includes/wikiengine/Render/Plain/Newline.php
author Dan
Sat, 06 Oct 2007 14:45:00 -0400
changeset 164 199599eca89e
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed external links in tplWikiFormat to use my monster HTTP request regex

<?php

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

?>