includes/wikiengine/Render/Plain/Newline.php
author Dan
Sat, 15 Mar 2008 14:18:54 -0400
changeset 502 7084168f23af
parent 1 fe660c52c48f
permissions -rw-r--r--
Adding the images for the expander support. (oops)

<?php

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

?>