2006-10-17 16:22:29 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
../pandoc -r native -s -w native testsuite.native > writer.native
|
|
|
|
../pandoc -r native -s -w markdown testsuite.native > writer.markdown
|
|
|
|
../pandoc -r native -s -w rst testsuite.native > writer.rst
|
|
|
|
../pandoc -r native -s -w html testsuite.native > writer.html
|
|
|
|
../pandoc -r native -s -w latex testsuite.native > writer.latex
|
|
|
|
../pandoc -r native -s -w rtf testsuite.native > writer.rtf
|
2007-07-09 08:59:13 +02:00
|
|
|
../pandoc -r native -s -w man testsuite.native > writer.man
|
2007-01-01 22:08:12 +01:00
|
|
|
sed -e '/^, Header 1 \[Str "HTML",Space,Str "Blocks"\]/,/^, HorizontalRule/d' testsuite.native | ../pandoc -r native -w docbook -s > writer.docbook
|
2007-07-15 04:56:34 +02:00
|
|
|
sed -e '/^, Header 1 \[Str "LaTeX"\]/,/^, HorizontalRule/d' testsuite.native | ../pandoc -r native -w context -s > writer.context
|
2006-10-17 16:22:29 +02:00
|
|
|
|