Two minor handler changes: tpl_handler now can take multiple templates, md_handler can only take one .md file.

This commit is contained in:
uriel 2009-01-23 17:51:23 +01:00
parent ca0507992e
commit a8fd3560fd

View File

@ -58,9 +58,9 @@ fn nav_tree {
# Handlers
fn md_handler { cat $* | $formatter }
fn md_handler { $formatter < $1 }
fn tpl_handler { template $1 }
fn tpl_handler { template $* }
fn html_handler {
# body states: 0 = no <body> found, 2 = after <body>, 1 = after <body></body>, -1 = after </body>