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. By default contains the directory of 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.",nargs=1,default="public")
parser.add_argument("-w","--output-html",help="The HTML file (for Web) to write into.",nargs=1,default="output.html")
parser.add_argument("-t","--output-tex",help="The TEX file to write into.",nargs=1,default="output.tex")
parser.add_argument("input_filename",help="The MarkDown file to process.")