2 # -*- coding: utf-8 -*-
 
   4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
 
   5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 
   7 from librarian.book2anything import Book2Anything, Option
 
  10 class Book2Html(Book2Anything):
 
  16         Option('-r', '--raw', dest='full-page',
 
  17                 action='store_false', default=True,
 
  18                 help='output raw text for use in templates')
 
  21         Option('-i', '--ignore-dublin-core', dest='parse_dublincore', 
 
  22                 action='store_false', default=True,
 
  23                 help='don\'t try to parse dublin core metadata')
 
  27 if __name__ == '__main__':