includes/wikiengine/Render/Plain/Heading.php
author Dan
Mon, 05 May 2008 20:06:37 -0400
changeset 542 5841df0ab575
parent 1 fe660c52c48f
permissions -rw-r--r--
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.

<?php

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