= Generate DocBook from AsciiDoc :navtitle: Generate DocBook :url-docbook45: https://github.com/asciidoctor/asciidoctor-docbook45 :url-yelp: https://wiki.gnome.org/action/show/Apps/Yelp Asciidoctor can produce the DocBook 5 XML output format from an AsciiDoc document. Although DocBook XML is not a publishable format, it can be used to tie into an existing publishing toolchain that processes DocBook. This page explains how to use Asciidoctor to convert AsciiDoc to DocBook. == Backend and converter Asciidoctor's built-in DocBook converter is registered for the `docbook` and `docbook5` backends. The DocBook converter generates XML that adheres to the DocBook XML schema. There's a corresponding DocBook tag for each AsciiDoc element. [horizontal] Backend names:: `docbook`, `docbook5` Converter class:: `Asciidoctor::Converter::DocBook5Converter` Output format:: XML Output file extension:: .xml == Generate DocBook . To follow along with the steps below, use your own AsciiDoc file or copy the contents of <> into a new plain text file. + .my-document.adoc [#ex-my-doc,asciidoc] ---- include::html-backend:example$my-document.adoc[tags=title;body] ---- . Make sure to save the file with the _.adoc_ file extension. . To convert the [.path]_my-document.adoc_ document to DocBook 5.0 format, call the processor with the backend flag set to `docbook`. $ asciidoctor -b docbook my-document.adoc . A new XML document, named [.path]_my-document.xml_, will now be present in the current directory. + -- $ ls my-document.adoc my-document.xml Here's a snippet of the XML generated by the DocBook converter. .XML generated from AsciiDoc [,xml] ----
The Dangers of Wolpertingers 2020-12-08 Don’t worry about gumberoos or splintercats. Something far more fearsome plagues the days, nights, and inbetweens. Wolpertingers.
Origins Wolpertingers are ravenous beasts.
---- -- . On Linux, you can view the DocBook file with {url-yelp}[Yelp^]. + $ yelp my-document.xml The DocBook converter produces output that is compliant to the DocBook 5.0 specification. A summary of the differences are as follows: * XSD declarations are used on the document root instead of a DTD * `` elements for document info instead of `` and `` * elements that hold the author's name are wrapped in a `` element * the id for an element is defined using an `xml:id` attribute * `` is used for links instead of `` * the URL for a link is defined using the `xl:href` attribute If you're using the Asciidoctor API, you can generate a DocBook document directly from your application. .Generate DocBook output from the API [,ruby] ---- Asciidoctor.convert_file 'my-document.adoc', backend: 'docbook' ---- If you need to output DocBook 4.5, you may find the community-supported {url-docbook45}[DocBook 4.5 Converter^] useful. == Convert DocBook to PDF Although the Asciidoctor project provides xref:pdf-converter::index.adoc[Asciidoctor PDF] for performing direct AsciiDoc to PDF conversion, you may opt instead to convert to PDF via DocBook. The DocBook to PDF conversion is handled by the DocBook toolchain. The DocBook toolchain can prove to be a challenge to set up. This section provides several suggestions for how to use the DocBook toolchain, though this list is by no means exhaustive. If you already have a working DocBook toolchain, then these instructions are not for you. === xmlto If you're using a Linux distribution, the *xmlto* package might be an option for you. https://pagure.io/xmlto[xmlto] is a simple shell script for converting XML files to various formats using the DocBook toolchain. Among those formats supported is DocBook as an input format and PDF as an output format. To install xmlto, look for the package by the same name and use your package manager to install it (e.g., `dnf install xmlto fop` or `apt-get install xmlto fop`). Once you have installed the package, you can use it to generate PDF from DocBook with Apache FOP as follows: $ xmlto --skip-validation --with-fop pdf doc.xml If you're using an RPM-based Linux distribution, you may be able to use the dblatex backend to generate the PDF instead: $ xmlto --skip-validation pdf doc.xml The AsciiDoc processor adds several XML processing instructions to support features not provided by DocBook, such as a thematic break and a page break. When using the Apache FOP backend, you need to provide an XSL stylesheet fragment that modifies the default XSL stylesheet to support these processing instructions. You can also use this stylesheet as an opportunity to customize the PDF that Apache FOP produces. Here's an example of an XSL stylesheet fragment to get you started: .custom.xsl [,xml] ---- false article toc,title book toc,title,figure,table,example,equation article nop book nop 1 0 ---- Pass this stylesheet to xmlto as follows: $ xmlto --skip-validation --with-fop -m custom.xsl pdf doc.xml To get more ideas of how to customize the stylesheet, refer to XSL stylesheet from the https://github.com/asciidoctor/asciidoctor-fopub/blob/main/src/dist/docbook-xsl/fo-pdf.xsl[fopub] project. === fopub A similar alternative to xmlto is https://github.com/asciidoctor/asciidoctor-fopub[fopub]. fopub uses Java and the Gradle build tool to wrap the DocBook toolchain. The only prerequisite to perform the DocBook to PDF conversion using fopub is a Java Development Kit (JDK), which provides the Java runtime. WARNING: Please note that the fopub project is archived. However, it still may prove useful. To get fopub, you must clone the repository. Once you have done so, you can run the `fopub` script in that repository to convert a DocBook file to PDF. $ ./fopub README.xml The benefit of fopub is that it's preconfigured to convert DocBook with AsciiDoc processing instructions. The stylesheet it provides also smooths out some of the rough edges of the visual styling provided by the DocBook toolchain. However, the project is no longer actively maintained, so keep that in mind when deciding whether to use it. As an alternative, you may give https://github.com/aanno/db-toolchain[db-toolchain], which positions itself as a successor to fopub (albeit more complex). === Maven plugins If you are using Maven to build your docs, then you might consider using either the docbkx plugin to generate PDF from DocBook. You can find an example projects in the Asciidoctor Maven example repository: * https://github.com/asciidoctor/asciidoctor-maven-examples/tree/main/docbook-pipeline-docbkx-example[docbkx] The typical way to use these plugins is in a processing pipeline starting with the xref:maven-tools::index.adoc[Asciidoctor Maven plugin]. The Asciidoctor Maven plugin uses Asciidoctor to generate the DocBook file(s).