fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
tabs and centered verses
[librarian.git]
/
src
/
librarian
/
command_line.py
diff --git
a/src/librarian/command_line.py
b/src/librarian/command_line.py
index
e7021bb
..
7b7eb38
100644
(file)
--- a/
src/librarian/command_line.py
+++ b/
src/librarian/command_line.py
@@
-22,13
+22,19
@@
def main(*args, **kwargs):
help='specifies the directory for output'
)
help='specifies the directory for output'
)
+ # Specific
+ parser.add_argument(
+ '-b', '--base-url', metavar="URL",
+ help="Base for relative URLs in documents (like image sources)"
+ )
+
parser.add_argument(
'--mp3',
metavar="FILE",
nargs="*",
help='specifies an MP3 file, if needed'
)
parser.add_argument(
'--mp3',
metavar="FILE",
nargs="*",
help='specifies an MP3 file, if needed'
)
-
+
args = parser.parse_args()
builder = builders[args.builder]
args = parser.parse_args()
builder = builders[args.builder]
@@
-52,6
+58,6
@@
def main(*args, **kwargs):
"mp3": args.mp3,
}
"mp3": args.mp3,
}
- output = document.build(builder, **kwargs)
+ output = document.build(builder,
base_url=args.base_url,
**kwargs)
with open(output_file_path, 'wb') as f:
f.write(output.get_bytes())
with open(output_file_path, 'wb') as f:
f.write(output.get_bytes())