includes/wikiengine/Render/Plain/Newline.php
author Dan
Mon, 03 Nov 2008 08:56:44 -0500
changeset 733 e5f638c216f7
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed error-out when DiffieHellman not supported and respawn requested (part of OS X QA process)

<?php

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

?>