我正在努力使用IronPython中基于C#的API生成编译的帮助文件(CHM)。
在输出中,我的类型为“ Ironpython.Runtime.List”,这对Python用户没有任何意义。我想将其更改为“ PythonList”或其他名称。
有一种简单的方法吗?
注意-我在Windows上使用doxygen 1.8.14。谢谢!
答案 0 :(得分:0)
嗯...好了,我用以下批处理文件解决了它。
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