includes/wikiengine/Render/Plain/Heading.php
author Dan
Wed, 27 May 2009 09:44:07 -0400
changeset 1003 28e2f75d66fd
parent 1 fe660c52c48f
permissions -rw-r--r--
Class "currentpage" is now added to all internal links, including sidebar buttons, if the link points to the current page.

<?php

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