功能

时间:2016-02-04 16:58:28

标签: anchor doxygen ref

我有一个过滤器,可以将实际代码转换为@code / @ endcode块,但我无法找到一种方法来创建这些部分的@ref链接。

以下是我的意思摘要:

/**
 * Refer to this example: @ref example1
 * @param $arg1
 * @param $arg2
 */
public function somefunction($arg1, $arg2)
{
    /**
     * @anchor example1 @code
    if (true)
    {
        $this = 'bollox';
    }
     * @endcode
     **/
}

这个输出看起来非常像我想要的(尽管我还没有决定如何最好地真正指出链接点... exmple1 让人想起来。)

问题是 example1 的超链接链接到文件名 .html#example1。

我检查了源代码,并且正在生成一个锚类。

据我所知,我并没有真正使用锚。

欢迎任何建议。

注意:我并没有特别想让 anchor 工作......只是想要一个超链接/书签来链接\ ref(或类似的)。

0 个答案:

没有答案