You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
999 B
27 lines
999 B
import argparse
|
|
|
|
from src.dokuwiki_to_hugo import DokuWikiToHugo
|
|
|
|
|
|
def str2bool(v):
|
|
if v.lower() in ('yes', 'true', 't', 'y', '1'):
|
|
return True
|
|
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
|
|
return False
|
|
else:
|
|
raise argparse.ArgumentTypeError('Boolean value expected.')
|
|
|
|
def main(directory, options):
|
|
DokuWikiToHugo(options.root, frontmatter_tags=options.frontmatter_tags).doku_to_hugo(directory)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-d", "--dir", help="the directory of your DokuWiki pages collection", required=True)
|
|
parser.add_argument("-r", "--root", help="the root directory name in your hugo content where to link to",
|
|
required=False)
|
|
parser.add_argument("--frontmatter_tags", default=True, type=str2bool,
|
|
help="whether to generate tags in front matter in the converted markdown.")
|
|
opts = parser.parse_args()
|
|
main(opts.dir, opts)
|