includes/wikiengine/Render/Plain/Newline.php
author Dan
Mon, 29 Sep 2008 08:26:49 -0400
changeset 715 29663506e85c
parent 1 fe660c52c48f
permissions -rw-r--r--
Added ability to use hash marks in internal links

<?php

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

?>