user2665694
user2665694

Reputation:

Docbook to HTML conversion tools (other than jade)

Are there any alternative tools for the conversion of Docbook documents (V4 or V5) to (X)HTML other than the standard Jade tool and the associated DSSSL stylesheet?. Of course XSLT is an option. I am looking for something more robust and handy compared to Jade (which is outdated technology).

Upvotes: 5

Views: 678

Answers (3)

Derk
Derk

Reputation: 111

Late to the party maybe, but for anyone interested in this day and age: I'm using Pandoc for conversions like this. It also supports converting docbook format to other formats, like HTML.

For example: pandoc -s -t docbook example.xml -o example.html

You can try it online here: https://pandoc.org/try/

Upvotes: 0

taringamberini
taringamberini

Reputation: 2747

I have got good results with the (XSLT based) following ones:

  • Maven plugin:
    • docbkx-maven-plugin
    • maven-jdocbook-plugin
  • Publican

Upvotes: 2

Peter Eisentraut
Peter Eisentraut

Reputation: 36719

The only options known to me for converting DocBook to HTML are DSSSL and XSLT. XSLT is the standard nowadays. I don't know what you hope to get from some other tool.

Upvotes: 1

Related Questions