includes/wikiengine/Render/Plain/Heading.php
author Dan
Fri, 12 Oct 2007 14:41:51 -0400
changeset 174 d74ff822acc9
parent 1 fe660c52c48f
permissions -rw-r--r--
Replaced autocompleting username with a much more efficient algorithm and caching system

<?php

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