X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/73858688886ec363048373f7e8253a33497fe3cd..83cae63af4330912cdb2546c195af2919afd30ac:/scripts/book2pdf diff --git a/scripts/book2pdf b/scripts/book2pdf index 3c363f1..b3f422e 100755 --- a/scripts/book2pdf +++ b/scripts/book2pdf @@ -15,10 +15,18 @@ class Book2Pdf(Book2Anything): uses_cover = True uses_provider = True transform_options = [ - Option('-t', '--save-tex', dest='save_tex', metavar='FILE', - help='path to save the intermediary LaTeX file to'), - Option('-m', '--morefloats', dest='morefloats', metavar='old/new/none', - help='force morefloats in old (<1.0c), new (>=1.0c) or none') + Option( + '-t', '--save-tex', dest='save_tex', metavar='FILE', + help='path to save the intermediary LaTeX file to' + ), + Option( + '-m', '--morefloats', dest='morefloats', metavar='old/new/none', + help='force morefloats in old (<1.0c), new (>=1.0c) or none' + ), + Option( + '-b', '--base-url', dest='base_url', metavar='URL', + help='specifies the base URL for relative image references' + ), ]