ddaec05d8f
+ Added Text/Pandoc/Writers/MediaWiki.hs + Added to pandoc.cabal + Added to Main.hs and Text/Pandoc.hs exports. + Added tests for mediawiki writer & table writer. + Added information on MediaWiki writer to README. + Added mediawiki markup to list of formats in pandoc(1) man page. + Updated debian/control with mediawiki output format. + Added mediawiki markup to description in macports portfile. + Updated freebsd package description to include mediawiki format. + Mention MediaWiki output format in web page index. + Added mediawiki demo to website. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1337 788f1e2b-df1e-0410-8736-df70ead52e1b
14 lines
878 B
Bash
Executable file
14 lines
878 B
Bash
Executable file
#!/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 texinfo testsuite.native > writer.texinfo
|
|
../pandoc -r native -s -w rtf testsuite.native > writer.rtf
|
|
../pandoc -r native -s -w man testsuite.native > writer.man
|
|
../pandoc -r native -s -w mediawiki testsuite.native > writer.mediawiki
|
|
sed -e '/^, Header 1 \[Str "HTML",Space,Str "Blocks"\]/,/^, HorizontalRule/d' testsuite.native | ../pandoc -r native -w docbook -s > writer.docbook
|
|
sed -e '/^, Header 1 \[Str "LaTeX"\]/,/^, HorizontalRule/d' testsuite.native | ../pandoc -r native -w context -s > writer.context
|
|
|