3 Oct
2017
3 Oct
'17
2:54 p.m.
On Tue, Jun 6, 2017 at 8:03 AM, Lorenzo Caminiti via Boost
* Does ascii interface with Doxygen? For example, can you embed in the asciidoc output a reference section generated by Doxygen and have hyperlinks in between the ascidoc and Doxygen sections? (Similar to Quickbook [xinclude ...].)
I think the toolchain for Doxygen plus Asciidoc would look like this: (header files) -> XML; using Doxygen XML -> Asciidoc; using xsltproc You would need to write an .xslt program to perform the translation from XML to asciidoc. It might look like this: https://github.com/vinniefalco/docca/blob/master/include/docca/doxygen.xsl (The .xsl file linked above converts XML into Quickbook). Thanks