diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,9 @@ stem = eut source_baseurl = http://euwiki.org/ source_basename = Ensuring_utmost_transparency_--_Free_Software_and_Open_Standards_under_the_Rules_of_Procedure_of_the_European_Parliament +# work around in mediawiki bug parsing blockquote tags on same line +re_blockquote = s|\n*(</?blockquote>)\n*|\n$$1\n|g + all: $(stem).pdf download: @@ -13,7 +16,7 @@ $(stem).mediawiki: $(stem).raw -e 'decode_entities($$_);' \ -e 's|.*?\n= |= |s;' \ -e 's|<!--.*-->||s;' \ - -e 's|\n*(</?blockquote>)\n*|\n$$1\n|g;' \ + -e '$(re_blockquote);' \ < $< > $@ $(stem).pdf: $(stem).mediawiki template.tex |