includes/wikiengine/Render/Plain/Newline.php
author Dan
Mon, 11 Aug 2008 19:52:00 -0400
changeset 678 c5d4ce19e640
parent 1 fe660c52c48f
permissions -rw-r--r--
Some tweaks to common, real minor stuff that's been waiting to be committed for a couple weeks at least

<?php

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

?>