includes/wikiengine/Render/Plain/Newline.php
author Dan
Fri, 07 Dec 2007 18:47:37 -0500
changeset 314 474f8be55943
parent 1 fe660c52c48f
permissions -rw-r--r--
Localized remainder of on-page tools and parts of PageProcess

<?php

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

?>