includes/wikiengine/Render/Plain/Newline.php
author Dan
Sat, 08 Nov 2008 22:37:59 -0500
changeset 729 ebac7eeb89eb
parent 1 fe660c52c48f
permissions -rw-r--r--
Merging in the past three months' work on ACL tracing tools.

<?php

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

?>