includes/wikiengine/Render/Plain/Heading.php
author Dan
Mon, 11 Feb 2008 10:05:33 -0500
changeset 408 7ecbe721217c
parent 1 fe660c52c48f
permissions -rw-r--r--
Modified editor and rename functions to go through the API when rolling back. This causes rollbacks to be logged.

<?php

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