includes/wikiengine/Render/Plain/Newline.php
author Dan
Mon, 01 Oct 2007 23:48:24 -0400
changeset 158 f7e83b6db3be
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed: RenderMan::parse_internal_links() problems with prepending Project: instead of Site_name: to project page alias-namespace links

<?php

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

?>