From: Sparky2021 ]]>
]]>
+ + +Newsletter Maxjosefstift + + + + + + + + + + + +++ + +
]]> ++ + + + + +]]> ++
]]>]]> ]]>+ + + + diff --git a/Test/etc/nl.xml b/Test/etc/nl.xml new file mode 100644 index 0000000..735535e --- /dev/null +++ b/Test/etc/nl.xml @@ -0,0 +1,6 @@ ++ + diff --git a/debian/mdoku.conf b/debian/mdoku.conf new file mode 100644 index 0000000..4f91cd7 --- /dev/null +++ b/debian/mdoku.conf @@ -0,0 +1,2 @@ +compile_type=NONE +target_type=DEB diff --git a/python/mDoc/mdoc_extract.py b/python/mDoc/mdoc_extract.py index 6226d79..32a529e 100755 --- a/python/mDoc/mdoc_extract.py +++ b/python/mDoc/mdoc_extract.py @@ -8,17 +8,20 @@ import sys from mdoc import extractor import re -usage = 'mdoc-extractÃberschrift
++
Text mit Verdickung
+' +usage = 'mdoc-extract [target]' def command_dispatch(args): # check runtime parameters if len(args) < 2: - raise RuntimeError("mdoc-extract needs 2 arguments.") + raise RuntimeError("mdoc-extract needs 2/3 arguments.") file = args[0] classs = args[1] - target = re.sub(r'\..*', '.tex', file) + if len(args) == 3: + target = args[2] + else: + target = re.sub(r'\..*', '.tex', file) return extractor.extract(file, classs, target) diff --git a/python/mDoc/mutil b/python/mDoc/mutil deleted file mode 120000 index 774bbec..0000000 --- a/python/mDoc/mutil +++ /dev/null @@ -1 +0,0 @@ -../../../xets/python/xets/util/ \ No newline at end of file