• jepso's avatar
    - New feature in documentation: you can now link to other documentation... · 9b619571
    jepso authored
    - New feature in documentation: you can now link to other documentation sections with the following syntax:
        - [doc getting-started:installation], or
        - [doc getting-started:installation Custom link text]
    - Updated Text_Wiki to 1.2.0
    - Documentation should now pass XHTML validator
    - Formatted DSN section so that it's easier on eyes
    - The single quotes in <code type='php'> won't work anymore due to the Text_Wiki update. Use double quotes instead: <code type="php">. The single quotes have been converted to double quotes in documentation files.
    - Modified the links in h1-h6 headings to use the same style as the headings.
    - Some refactoring
    
    9b619571
Url.php 894 Bytes
<?php


class Text_Wiki_Render_Latex_Url extends Text_Wiki_Render {


    var $conf = array(
        'target' => false,
        'images' => true,
        'img_ext' => array('jpg', 'jpeg', 'gif', 'png')
    );

    /**
    *
    * 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)
    {
        // create local variables from the options array (text,
        // href, type)
        extract($options);

        if ($options['type'] == 'start') {
            return '';
        } else if ($options['type'] == 'end') {
            return '\footnote{' . $href . '}';
        } else {
            return $text . '\footnote{' . $href . '}';
        }
    }
}
?>