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("-p","--img-public-dir",help="Directory to put processed images into. The program will overwrite images, whose dependencies are newer.",default="public")
parser.add_argument("-c","--img-cache-dir",help="Directory to cache processed images and intermediate products. The program will overwrite files, whose dependencies are newer.",default="cache")
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")