toc.php

来自「Serendipity是一个php+mysql的blog程序」· PHP 代码 · 共 80 行

PHP
80
字号
<?php// $Id: Toc.php,v 1.7 2004/09/25 19:05:14 pmjones Exp $class Text_Wiki_Render_Xhtml_Toc extends Text_Wiki_Render {        var $conf = array(        'css_list' => null,        'css_item' => null,        'title' => '<strong>Table of Contents</strong>',        'div_id' => 'toc'    );        var $min = 2;        /**    *     * 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)    {        // type, id, level, count, attr        extract($options);                switch ($type) {                case 'list_start':                    $html = '<div';                        $css = $this->getConf('css_list');            if ($css) {                $html .= " class=\"$css\"";            }                        $div_id = $this->getConf('div_id');            if ($div_id) {                $html .= " id=\"$div_id\"";            }                        $html .= '>';            $html .= $this->getConf('title');            return $html;            break;                case 'list_end':            return "</div>\n";            break;                    case 'item_start':            $html = '<div';                        $css = $this->getConf('css_item');            if ($css) {                $html .= " class=\"$css\"";            }                        $pad = ($level - $this->min);            $html .= " style=\"margin-left: {$pad}em;\">";                        $html .= "<a href=\"#$id\">";            return $html;            break;                case 'item_end':            return "</a></div>\n";            break;        }    }}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?