includes/wikiengine/Render/Plain/Newline.php
author Dan
Tue, 02 Dec 2008 21:11:22 -0500
changeset 760 60c132a5bc8e
parent 1 fe660c52c48f
permissions -rw-r--r--
External links in sidebar now work with manual port numbers and IPv6 addresses

<?php

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

?>