X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/e57b146bf49e38b3bb57615110b27de5b4d1ae69..43fd2320e5e400bd8763f3ebb70b8442f9166f8b:/scripts/book2txt?ds=inline
diff --git a/scripts/book2txt b/scripts/book2txt
index 1b4c0ef..c706a07 100755
--- a/scripts/book2txt
+++ b/scripts/book2txt
@@ -13,15 +13,20 @@ class Book2Txt(Book2Anything):
ext = "txt"
uses_cover = False
uses_provider = False
- parser_args = [
+ parser_options = [
Option('-i', '--ignore-dublin-core', dest='parse_dublincore',
action='store_false', default=True,
help='don\'t try to parse dublin core metadata')
]
- transform_args = [
+ transform_options = [
Option('-w', '--wrap', action='store', type='int', dest='wrapping', default=0,
help='set line wrap column')
]
+ transform_flags = [
+ Option('-r', '--raw', dest='raw-text',
+ action='store_true', default=False,
+ help='Produce raw text, without any surrounding info.')
+ ]
transform = WLDocument.as_text