includes/wikiengine/Render/Plain/Newline.php
author Dan
Tue, 18 Sep 2007 17:27:55 -0400
changeset 137 3bce0c320e80
parent 1 fe660c52c48f
permissions -rw-r--r--
Fix: textarea tags got stripped naked by the HTML optimizer, now no longer

<?php

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

?>