summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-10-08 04:35:21 -0600
committerDan Allen <dan.j.allen@gmail.com>2022-10-08 04:35:21 -0600
commit4bab183b9f3fad538f86071b2106f3b8185d3832 (patch)
treeedbf9e11c78a2aa3f872dce5d97776a408017867 /docs
parentebd63ad96000108fdaa2e97010bf0e66c888fe9a (diff)
add tip about reference converters to custom converters page
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/convert/pages/custom.adoc2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/modules/convert/pages/custom.adoc b/docs/modules/convert/pages/custom.adoc
index a33989c4..289b87dc 100644
--- a/docs/modules/convert/pages/custom.adoc
+++ b/docs/modules/convert/pages/custom.adoc
@@ -10,6 +10,8 @@ If you want to produce an output format that's not supported by a built-in conve
You may also decide to create a custom converter to customize the output of a supported output format or to take an entirely different approach.
A custom converter gives you that ability, offering a more formal alternative to xref:templates.adoc[converter templates].
+TIP: In addition to Asciidoctor's {url-org}/asciidoctor/tree/main/lib/asciidoctor/converter[built-in converters], there are numerous custom converters you can use as a reference, including {url-org}/asciidoctor-epub3[Asciidoctor EPUB3], {url-org}/asciidoctor-pdf[Asciidoctor PDF], {url-org}/asciidoctor-reveal.js[Asciidoctor reveal.js], {url-org}/asciidoctor-fb2[Asciidoctor FB2], and {url-org}/asciidoctor-docbook45[Asciidoctor DocBook 4.5].
+
On this page, you'll learn how to create a custom converter in Ruby, register it, then make use of it.
After a brief overview, we'll begin by extending and replacing a registered converter.
Then we'll move on to making a new converter from scratch.