--- data/markupHelp/DocBook.orig 2023-07-10 15:44:20 UTC +++ data/markupHelp/DocBook @@ -0,0 +1,122 @@ +~~~~~~~~ + +
+ Using DocBook + + As DocBook is an XML format, opening and closing tags + must match (<tag>...</tag>). + +
+ Text Formatting + + A simple paragraph. + + + A complex paragraph may contain blocks. + + + italics: italics, + bold: bold, + strikeout: strikeout, + inline code snippets: inline code. + + + Links: + external, + internal Wiki Link. + + + Inserting an image: + + folder + + + + + +
+
+ Text Blocks + + Quotation: +
+ + A quotation set off from the main text. + +
+
+ + Code listing: + +#!/bin/sh -e +echo "Hello world" + + +
+
+ Lists + + Simple list: + + + + first + + + + + second + + + + Numbered list: + + + + first + + + + + second + + + + Definition list: + + + + DocBook + + + + A sophisticated XML format. + + + + + + orange + + + + A healthy fruit. + + + + + A warm colour. + + + + + +
+
+ +~~~~~~~~ + +Further reading: +[DocBook 5: The Definitive Guide](https://tdg.docbook.org/tdg/5.0/docbook.html), +which includes the +[List of DocBook elements](https://tdg.docbook.org/tdg/5.0/chunk-part-d64e8789.html).