includes/wikiengine/Render/Plain/Heading.php
author Dan
Mon, 17 Mar 2008 09:47:19 -0400
changeset 506 da0f2a76add5
parent 1 fe660c52c48f
permissions -rw-r--r--
Updated tree menu images to fit with the icons

<?php

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