includes/wikiengine/Render/Plain/Newline.php
author Dan
Sat, 06 Oct 2007 20:39:18 -0400
changeset 168 bee40e39321b
parent 1 fe660c52c48f
permissions -rw-r--r--
Dummy commit to (hopefully) revert merge of unstable code

<?php

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

?>