]> git.lyx.org Git - features.git/commitdiff
configure.py: add --nofooter option to hide elyXer's footer
authorUwe Stöhr <uwestoehr@lyx.org>
Sat, 30 May 2015 00:44:59 +0000 (02:44 +0200)
committerUwe Stöhr <uwestoehr@lyx.org>
Sat, 30 May 2015 00:44:59 +0000 (02:44 +0200)
lib/configure.py

index 9d86b77e39c40ab4684e7ed6ea2742e02da9ff4f..2e52b43bcd774621b458c530e76d0e83c03eeba0 100644 (file)
@@ -779,10 +779,10 @@ def checkConverterEntries():
 
     # eLyXer: search as an executable (elyxer.py, elyxer)
     path, elyxer = checkProg('a LyX -> HTML converter',
-        ['elyxer.py --directory $$r $$i $$o', 'elyxer --directory $$r $$i $$o'],
+        ['elyxer.py --directory $$r $$i $$o', 'elyxer --nofooter --directory $$r $$i $$o'],
         rc_entry = [ r'\converter lyx      html       "%%"     ""' ])
     path, elyxer = checkProg('a LyX -> HTML (MS Word) converter',
-        ['elyxer.py --html --directory $$r $$i $$o', 'elyxer --html --directory $$r $$i $$o'],
+        ['elyxer.py --html --directory $$r $$i $$o', 'elyxer --nofooter --html --directory $$r $$i $$o'],
         rc_entry = [ r'\converter lyx      wordhtml       "%%" ""' ])
     if elyxer.find('elyxer') >= 0:
       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')