如何在Xcode中获得Doxygen 1.8的功能?

问题描述 投票:0回答:1

所以我试图在Xcode(11.1)中完全接受Doxygen。

根据Doxygen的文档,像这样的特性是 标记符列表 应该在Doxygen 1.8.0和更高版本中支持。

如果我运行 doxygen --version 命令,它告诉我,我有版本 1.8.3.

但是当我试图在我的Objective-C Doxygen注释中使用Markdown、list和类似的功能时,Xcode的内置文档生成器似乎忽略了它们。

我错过了什么?是否有一个神奇的项目设置或Doxygen配置文件需要我去修改?

更新:这里有一个例子,我认为应该可以,但没有。

/** Called for each `DirectoryPackage` read during `buildSessions`
 *
 * Base class performs the final verification of the package references and adds all of the directory and file package
 * references to the session. Specifically:
 *    - ensures immediate file references are in this session
 *    - checks that all delta file and directory references are correctly inherited
 *    - performs session package reference accounting
 * @param info session details
 * @param directoryPackage the directory package
 * @param inheritedPackageSet package numbers belonging to inherited layers
 * @throws verify or inheritance exception
 */

这里是在Xcode中如何格式化的。enter image description here

objective-c xcode doxygen
1个回答
0
投票

由于我想添加一些图片,它不适合放在注释中。

看起来基本信息在1.8.18和1.8.3的HTML文件中是存在的。

enter image description here

看起来XCode不能翻译 <ul> <li> 元素。

© www.soinside.com 2019 - 2024. All rights reserved.