Doxygen 搜索和替换输出
Doxygen Search and Replace Output
我正在为使用 IronPython 中基于 C# 的 API 生成已编译的帮助文件 (CHM)。
在输出中我有类型 "Ironpython.Runtime.List",这对 Python 用户没有任何意义。我想将其更改为 "PythonList" 或其他内容。
有没有简单的方法可以做到这一点?
注意 - 我在 Windows 上使用 doxygen 1.8.14。谢谢!
嗯...我用下面的批处理文件解决了它。
set hhc=C:\Program Files (x86)\HTML Help Workshop\hhc.exe
doxygen "%cd%\Doxyfile.cfg"
"%cd%\fnr.exe" --cl --find "IronPython.Runtime.List" --replace "List []" --dir "%cd%\html" --fileMask "*.html" --includeSubDirectories
"%hhc%" "%cd%\html\index.hhp"
fnr.exe 可从以下位置获得:http://http://findandreplace.io
我正在为使用 IronPython 中基于 C# 的 API 生成已编译的帮助文件 (CHM)。
在输出中我有类型 "Ironpython.Runtime.List",这对 Python 用户没有任何意义。我想将其更改为 "PythonList" 或其他内容。
有没有简单的方法可以做到这一点?
注意 - 我在 Windows 上使用 doxygen 1.8.14。谢谢!
嗯...我用下面的批处理文件解决了它。
set hhc=C:\Program Files (x86)\HTML Help Workshop\hhc.exe
doxygen "%cd%\Doxyfile.cfg"
"%cd%\fnr.exe" --cl --find "IronPython.Runtime.List" --replace "List []" --dir "%cd%\html" --fileMask "*.html" --includeSubDirectories
"%hhc%" "%cd%\html\index.hhp"
fnr.exe 可从以下位置获得:http://http://findandreplace.io