diff options
author | Puneeth Chaganti <punchagan@gmail.com> | 2010-12-04 23:49:53 +0530 |
---|---|---|
committer | Puneeth Chaganti <punchagan@gmail.com> | 2010-12-04 23:49:53 +0530 |
commit | 4d48abcb12f11e05091669c462c2ac8248f4c7aa (patch) | |
tree | 8ca149077751e01761032bc2b4c3fe016fa7558a /templates/org.template | |
parent | 921e2b6e67e0bcc0c6644b5455bf9d2e70f1a386 (diff) | |
download | pandoc-4d48abcb12f11e05091669c462c2ac8248f4c7aa.tar.gz |
Added tests.
+ Added tables.org and writer.org to tests.
+ Added org.template to templates.
+ Changed RunTests.hs as required.
+ Minor changes to Org writer.
Diffstat (limited to 'templates/org.template')
-rw-r--r-- | templates/org.template | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/org.template b/templates/org.template new file mode 100644 index 000000000..303e1aad0 --- /dev/null +++ b/templates/org.template @@ -0,0 +1,22 @@ +$if(title)$ +$title$ + +$endif$ +#+AUTHOR: $for(author)$$author$$sep$; $endfor$ +$if(date)$ +#+DATE: $date$ + +$endif$ +$for(header-includes)$ +$header-includes$ + +$endfor$ +$for(include-before)$ +$include-before$ + +$endfor$ +$body$ +$for(include-after)$ + +$include-after$ +$endfor$ |