diff options
author | Jon Dowland <jon@alcopop.org> | 2009-05-16 13:59:27 +0100 |
---|---|---|
committer | Jon Dowland <jon@alcopop.org> | 2009-05-16 13:59:27 +0100 |
commit | 79510950f09ace7906e149799ffda5aa26decbf6 (patch) | |
tree | 954370ae9007d964d9bf64545752d0e1d93a2841 /IkiWiki | |
parent | 30248df40a19dc03c0d8c07e136105f3c2299191 (diff) |
add a long name for mdwn ("Markdown")
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/mdwn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/mdwn.pm b/IkiWiki/Plugin/mdwn.pm index 0e134c822..c62780cb8 100644 --- a/IkiWiki/Plugin/mdwn.pm +++ b/IkiWiki/Plugin/mdwn.pm @@ -8,7 +8,7 @@ use IkiWiki 3.00; sub import { hook(type => "getsetup", id => "mdwn", call => \&getsetup); - hook(type => "htmlize", id => "mdwn", call => \&htmlize); + hook(type => "htmlize", id => "mdwn", call => \&htmlize, longname => "Markdown"); } sub getsetup () { |