includes/wikiengine/Render/Plain/Underline.php
author Dan
Tue, 29 Jan 2008 16:19:51 -0500
changeset 387 92664d2efab8
parent 1 fe660c52c48f
permissions -rw-r--r--
Rebranded source code as 1.1.1; added TinyMCE ACL rule as per Vadi's request: http://forum.enanocms.org/viewtopic.php?f=7&t=54

<?php

class Text_Wiki_Render_Plain_Underline extends Text_Wiki_Render {

    /**
    * 
    * Renders a token into text matching the requested format.
    * 
    * @access public
    * 
    * @param array $options The "options" portion of the token (second
    * element).
    * 
    * @return string The text rendered from the token options.
    * 
    */
    
    function token($options)
    {
        return;
    }
}
?>