summaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2023-06-27 23:54:51 -0600
committerDan Allen <dan.j.allen@gmail.com>2023-06-28 03:25:23 -0600
commit5ae2ea41688b03e84df4581d9fd1ab6b6c1026ef (patch)
treee128da5925e958cb84a758bdcc8225dbf94b614a /docs/modules/ROOT/pages
parent9c12ed5f067a337b22ed1e2131697f0122e6cae8 (diff)
document how to add breakable option to all tables at runtime using Asciidoctor extension
Diffstat (limited to 'docs/modules/ROOT/pages')
-rw-r--r--docs/modules/ROOT/pages/breakable-and-unbreakable.adoc3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/modules/ROOT/pages/breakable-and-unbreakable.adoc b/docs/modules/ROOT/pages/breakable-and-unbreakable.adoc
index fb70d351..1e4c4f42 100644
--- a/docs/modules/ROOT/pages/breakable-and-unbreakable.adoc
+++ b/docs/modules/ROOT/pages/breakable-and-unbreakable.adoc
@@ -194,4 +194,7 @@ Orphan prevents adds almost as many since it's a similar process.
Doing that by default for tables, sections, and discrete headings would be too complex and costly.
To recoup some of the processing time, we decided to make some trade-offs.
Therefore, blocks are breakable by default and authors must opt-in to get orphan prevention for tables, sections, and discrete headings.
+
+However, you can add the `breakable` (or `unbreakable` option) to any block at runtime using an Asciidoctor extension.
+Refer to xref:extend:use-cases.adoc#breakable-tables[breakable tables] to find the code for this extension.
****