includes/wikiengine/Render/Plain/Heading.php
author Dan
Thu, 26 Feb 2009 01:07:32 -0500
changeset 843 4415e50e4e84
parent 1 fe660c52c48f
permissions -rw-r--r--
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.

<?php

class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
    
    function token($options)
    {
        if ($options['type'] == 'end') {
            return "\n\n";
        } else {
            return "\n";
        }
    }
}
?>