includes/wikiengine/Render/Plain/Heading.php
author Dan
Sun, 10 May 2009 15:52:53 -0400
changeset 963 b572ce1114f1
parent 1 fe660c52c48f
permissions -rw-r--r--
Wikitext redirects should work again + get_redirect() added to Namespace_* to allow plugins to extend

<?php

class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
    
    function token($options)
    {
        if ($options['type'] == 'end') {
            return "\n\n";
        } else {
            return "\n";
        }
    }
}
?>