diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-22 22:18:04 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-22 22:18:04 -0700 |
commit | 663adaa8612242dfce8c32ae5c7afc6be45c6eb6 (patch) | |
tree | a7fabff7921c4d75645f7148b5f24d4928df1866 /default.docbook | |
parent | a053c6d1b072f080bb13bc1a479ac6db7dd2b154 (diff) | |
download | pandoc-663adaa8612242dfce8c32ae5c7afc6be45c6eb6.tar.gz |
Renamed templates from <writer>.template to default.<writer>.
Diffstat (limited to 'default.docbook')
-rw-r--r-- | default.docbook | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/default.docbook b/default.docbook new file mode 100644 index 000000000..66dfbef8d --- /dev/null +++ b/default.docbook @@ -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> |