summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2023-12-06 13:28:10 -0700
committerDan Allen <dan.j.allen@gmail.com>2023-12-06 13:28:10 -0700
commit1e6357ec8006782c8f1c65abd76f797912065256 (patch)
tree491406006be762ab4764a0999f8682c3d669f52d /docs
parent77d0467cf1841d3c1f6f013b7d582fd296fd7a27 (diff)
add list of debug messages to errors and warnings page
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/ROOT/pages/errors-and-warnings.adoc25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/modules/ROOT/pages/errors-and-warnings.adoc b/docs/modules/ROOT/pages/errors-and-warnings.adoc
index 624d4641..83517026 100644
--- a/docs/modules/ROOT/pages/errors-and-warnings.adoc
+++ b/docs/modules/ROOT/pages/errors-and-warnings.adoc
@@ -40,6 +40,31 @@ Represents a URI (i.e., URL) being referenced.
<x> or <y>::
Placeholders for other contextual information in the message.
+[#debug]
+== Debug messages
+
+[cols=2*]
+|===
+|Message |Troubleshooting
+
+|unknown style for <y> block: <x>
+|The processor could not find an extension registered for the <y> block with the custom style <x>.
+It's not required to register an extension for a custom block, so this message is merely informational.
+If the extension is not registered, the processor will fall back to the default semantics of the block.
+The block will be rendered as though the custom style is not present.
+
+|unknown name for block macro: <x>
+|The processor could not find an extension registered for the block macro named <x>.
+It's not required to register an extension for a custom block macro, so this message is merely informational.
+If the extension is not registered, the processor will leave the block macro unprocessed (treat it as paragraph text).
+
+|unknown style for paragraph: <x>
+|The processor could not find an extension registered for the paragraph with the custom style <x>.
+It's not required to register an extension for a custom paragraph, so this message is merely informational.
+If the extension is not registered, the processor will fall back to the default semantics of the paragraph.
+The paragraph will be rendered as though the custom style is not present.
+|===
+
[#info]
== Info messages