bugfix
[librarian.git] / scripts / book2html
1 #!/usr/bin/env python
2 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from librarian.book2anything import Book2Anything, Option
6
7
8 class Book2Html(Book2Anything):
9     format_name = "HTML"
10     ext = "html"
11     uses_cover = False
12     uses_provider = False
13     transform_flags = [
14         Option('-r', '--raw', dest='full-page',
15                 action='store_false', default=True,
16                 help='output raw text for use in templates')
17     ]
18     transform_options = [
19         Option('--css', dest='css'),
20         Option(
21             '-b', '--base-url', dest='base_url', metavar='URL',
22             help='specifies the base URL for relative image references'
23         ),
24     ]
25     parser_options = [
26         Option('-i', '--ignore-dublin-core', dest='parse_dublincore', 
27                 action='store_false', default=True,
28                 help='don\'t try to parse dublin core metadata')
29     ]
30
31
32 if __name__ == '__main__':
33     Book2Html.run()