includes/wikiengine/Render/Plain/Newline.php
author Dan
Tue, 09 Jun 2009 03:05:20 -0400
changeset 1022 06debbf8dd75
parent 1 fe660c52c48f
permissions -rw-r--r--
Install: fixed a few bugs that showed up under IE8

<?php

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

?>