diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-09-19 20:14:59 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-09-19 20:14:59 +0200 |
| commit | 04f8d5f3093e1b13aa704590f4d0bf9dce6afce9 (patch) | |
| tree | 163392588adcd735a7ab805b24740fdb1120b8ec /src/g2h/cli.py | |
| parent | cebadfcfbe74a9b892854e860d6d50565dffa7be (diff) | |
| download | git2hugo-04f8d5f3093e1b13aa704590f4d0bf9dce6afce9.tar.gz | |
g2h: Make sure backticks in plaintext doesn't break page rendering
Diffstat (limited to 'src/g2h/cli.py')
| -rw-r--r-- | src/g2h/cli.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/g2h/cli.py b/src/g2h/cli.py index d61b71b..fe3850c 100644 --- a/src/g2h/cli.py +++ b/src/g2h/cli.py @@ -10,6 +10,7 @@ def parse_args(): description='Convert a git repository into markdown files Hugo can understand.') parser.add_argument('--repo', help='Path to the root of git repository', default=os.getcwd()) parser.add_argument('--out', help='Path to where the generated files should be stored', default=os.getcwd()) + # TODO: Add an actual default value. parser.add_argument('--name', help='Name of the project. Default: directory name of repo') parser.add_argument('--content-subdir', help='Subdir(s) where the page will be served from. Default: None', default='') |