项目作者: jason-fox

项目描述 :
A DITA-OT Plug-in which creates DITA-based API documentation from Doxygen XML sources
高级语言: XSLT
项目地址: git://github.com/jason-fox/fox.jason.passthrough.doxygen.git
创建时间: 2020-04-25T14:00:51Z
项目社区:https://github.com/jason-fox/fox.jason.passthrough.doxygen

开源协议:Apache License 2.0

下载


Doxygen Plugin for DITA-OT

license
DITA-OT 4.2
CI
Coverage Status

This is a DITA-OT Plug-in used to auto-create valid DITA-based Doxygen documentation.
The initial source of the documentation can be generated directly using the
Doxygen XML. The XML file can be added to the source and
processed as if it had been written in DITA.


Table of Contents

- Background
- Install
- Installing DITA-OT
- Installing the Plug-in
- Usage
- License

Background

Doxygen is a tool that parses the declarations and
documentation comments in a set of source files and produces a set of HTML pages describing the classes, interfaces,
constructors, methods, and fields.

Sample doxygen

  1. namespace transport
  2. {
  3. /** Mountain bike implementation of a `Bicycle`.
  4. *
  5. * MountainBike is an implementation of a Bicycle
  6. * providing a bike for cycling on rough terrain. Mountain bikes
  7. * are pretty cool because they have stuff like **Suspension** (and
  8. * you can even adjust it using SetSuspension). If you're looking
  9. * for a bike for use on the road, you might be better off using a
  10. * RacingBike though.
  11. *
  12. * @ingroup mountainbike
  13. */
  14. class MountainBike : public Bicycle
  15. {
  16. public:
  17. /** Set suspension stiffness.
  18. * @stiffness the suspension stiffness.
  19. *
  20. * SetSuspension changes the stiffness of the suspension
  21. * on the bike. The method will return false if the stiffness
  22. * could not be adjusted.
  23. *
  24. * @return true if the suspension was adjusted successfully,
  25. * false otherwise.
  26. */
  27. bool SetSuspension(double stiffness);

Sample DITA Output

Install

The DITA-OT doxygen plug-in has been tested against DITA-OT 3.x. The plugin requires
the XSLT 3.0 support found in the Saxon9.8HE library, so the mimimum
DITA-OT version is therefore 3.3. It is recommended that you upgrade to the latest version.

Installing DITA-OT

The DITA-OT doxygen plug-in is a file reader for the DITA Open Toolkit.

  • Full installation instructions for downloading DITA-OT can be found
    here.

    1. Download the dita-ot-4.2.zip package from the project website at
      dita-ot.org/download
    2. Extract the contents of the package to the directory where you want to install DITA-OT.
    3. Optional: Add the absolute path for the bin directory to the PATH system variable.

    This defines the necessary environment variable to run the dita command from the command line.

  1. curl -LO https://github.com/dita-ot/dita-ot/releases/download/4.2/dita-ot-4.2.zip
  2. unzip -q dita-ot-4.2.zip
  3. rm dita-ot-4.2.zip

Installing the Plug-in

  • Run the plug-in installation commands:
  1. dita install https://github.com/jason-fox/fox.jason.passthrough.doxygen/archive/master.zip

The dita command line tool requires no additional configuration.


Usage

To do generate Doxygen XML set GENERATE_XML to YES.

The XML output consists of an index file named index.xml which lists all items extracted by doxygen with references to the other XML files for details. The structure of the index is described by a schema file index.xsd. The Doxygen source should be concatenated into one single XML file using the instructions found in the XSLT file combine.xslt.

Once the source XML has been created, add it to the *.ditamap and mark it for doxygen processing, by labelling it
with format="doxygen" within the *.ditamap as shown:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE bookmap PUBLIC "-//OASIS//DTD DITA BookMap//EN" "bookmap.dtd">
  3. <bookmap>
  4. ...etc
  5. <appendices toc="yes" print="yes">
  6. <topicmeta>
  7. <navtitle>Appendices</navtitle>
  8. </topicmeta>
  9. <appendix format="dita" href="topic.dita">
  10. <topicref format="doxygen" type="topic" href="doxygen.xml"></topicref>
  11. </appendix>
  12. </appendices>
  13. </bookmap>

The additional file will be converted to a *.dita file and will be added to the build job without further processing.
Unless overridden, the navtitle of the included topic will be the same as root name of the file. Any underscores in
the filename will be replaced by spaces in title.

License

Apache 2.0 © 2020 - 2024 Jason Fox