Updated README.md to document template system
This commit is contained in:
8
utils/build_help_table.py
Normal file
8
utils/build_help_table.py
Normal file
@@ -0,0 +1,8 @@
|
||||
""" Builds the template table in markdown format for README.md """
|
||||
|
||||
from osxphotos.template import TEMPLATE_SUBSTITUTIONS
|
||||
|
||||
print("| Substitution | Description |")
|
||||
print("|--------------|-------------|")
|
||||
for subst, descr in TEMPLATE_SUBSTITUTIONS.items():
|
||||
print(f"|{subst}|{descr}|")
|
||||
Reference in New Issue
Block a user