diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 12:02:59 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 12:02:59 -0700 |
commit | d095685bde2f938f6282692adc27bf59d0fb4803 (patch) | |
tree | aaa70982e8c5ada610d5581fc283b75fd16590f5 /docbook.template | |
download | pandoc-d095685bde2f938f6282692adc27bf59d0fb4803.tar.gz |
Initial commit
Diffstat (limited to 'docbook.template')
-rw-r--r-- | docbook.template | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docbook.template b/docbook.template new file mode 100644 index 000000000..66dfbef8d --- /dev/null +++ b/docbook.template @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8" ?> +<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" + "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"> +<article> + <articleinfo> + <title>$title$</title> +$for(author)$ + <author> + $author$ + </author> +$endfor$ +$if(date)$ + <date>$date$</date> +$endif$ + </articleinfo> +$for(include-before)$ +$include-before$ +$endfor$ +$body$ +$for(include-after)$ +$include-after$ +$endfor$ +</article> |