diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-03-18 06:45:43 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-03-18 06:45:43 +0000 |
commit | 695961155a00738160b05c25588b6b02f681a18e (patch) | |
tree | 5706347d53fb1310a1c2bfbacc56d631195d0d40 /templates/plain.template | |
parent | 081ae411b3ecc98746e9315355a85498b7e95d30 (diff) | |
download | pandoc-695961155a00738160b05c25588b6b02f681a18e.tar.gz |
Added plain writer.
Text.Pandoc.Writers.Markdown now exports a writePlain,
which writes plain text without links, pictures, or
special formatting (not even markdown conventions).
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1907 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'templates/plain.template')
-rw-r--r-- | templates/plain.template | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/plain.template b/templates/plain.template new file mode 100644 index 000000000..06ecbd3a6 --- /dev/null +++ b/templates/plain.template @@ -0,0 +1,23 @@ +$if(titleblock)$ +$title$ +$for(author)$$author$$sep$; $endfor$ +$date$ + +$endif$ +$for(header-includes)$ +$header-includes$ + +$endfor$ +$for(include-before)$ +$include-before$ + +$endfor$ +$if(toc)$ +$toc$ + +$endif$ +$body$ +$for(include-after)$ + +$include-after$ +$endfor$ |