includes/wikiengine/Render/Plain/Newline.php
author Dan
Tue, 23 Oct 2007 12:30:08 -0400
changeset 191 8e2fffc5c622
parent 1 fe660c52c48f
permissions -rw-r--r--
Slight HTTPS compatibility improvements

<?php

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

?>