includes/wikiengine/Render/Plain/Newline.php
author Dan
Fri, 12 Oct 2007 14:41:51 -0400
changeset 184 d74ff822acc9
parent 1 fe660c52c48f
permissions -rw-r--r--
Replaced autocompleting username with a much more efficient algorithm and caching system

<?php

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

?>