parser.add_argument("-l","--img-lookup-dirs",help="Image lookup directories. When processing images, the program will try to find the image in them first. Always looks for images in the same folder as the markdown file.",nargs="+",default=[])
parser.add_argument("-p","--img-public-dir",help="Directory to put processed images into. The program will not overwrite existing images.",default="public")
parser.add_argument("-i","--img-web-path",help="Path where the processed images are available on the website.",default="/")
parser.add_argument("-w","--output-html",help="The HTML file (for Web) to write into.",default="output.html")
parser.add_argument("-t","--output-tex",help="The TEX file to write into.",default="output.tex")
parser.add_argument("input_filename",help="The markdown file to process.")