From c08ed3f61a5dda0a33cda08106140be5a5cd6da4 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 12 Aug 2012 19:31:20 -0700 Subject: Fixed titleblock in markdown, plain templates. Now it is just a single string. Previously separate title, author, and date variables were used, but this didn't allow different kinds of title blocks. --- default.markdown | 4 +--- default.plain | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/default.markdown b/default.markdown index d500d3384..95d7e52cc 100644 --- a/default.markdown +++ b/default.markdown @@ -1,7 +1,5 @@ $if(titleblock)$ -% $title$ -% $for(author)$$author$$sep$; $endfor$ -% $date$ +$titleblock$ $endif$ $for(header-includes)$ diff --git a/default.plain b/default.plain index 06ecbd3a6..95d7e52cc 100644 --- a/default.plain +++ b/default.plain @@ -1,7 +1,5 @@ $if(titleblock)$ -$title$ -$for(author)$$author$$sep$; $endfor$ -$date$ +$titleblock$ $endif$ $for(header-includes)$ -- cgit v1.2.3