Skip to content

Commit

Permalink
Fix in docbook and odt generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Ciampa committed Oct 29, 2014
1 parent b248217 commit 8f4b1cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/asciidoc/cvpcb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ html: adoc

docbook: adoc
for i in *.adoc ; do \
asciidoc -a 'newline=\\\n' -b docbook --section-numbers $$i ; \
asciidoc -a 'newline=\n' -b docbook --section-numbers $$i ; \
done

pdf: adoc
Expand All @@ -32,7 +32,8 @@ pdf: adoc

odt: docbook
for i in *.xml ; do \
pandoc -f docbook -t odt -o $$i.odt $$i ; \
y=`basename $$i .xml` ; \
pandoc -f docbook -t odt -o $$y.odt $$i ; \
done


Expand Down

0 comments on commit 8f4b1cf

Please sign in to comment.