includes/wikiengine/Render/Plain/Newline.php
author Dan
Mon, 13 Apr 2009 12:05:46 -0400
changeset 903 b8db9a7946fc
parent 1 fe660c52c48f
permissions -rw-r--r--
Theme selector: controls height now (limits box to height of screen minus a few px of padding) if there are lots of themes

<?php

class Text_Wiki_Render_Plain_Newline extends Text_Wiki_Render {
    
    
    function token($options)
    {
        return "\n";
    }
}

?>