aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2020-10-04 21:55:09 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2020-10-04 21:55:48 +0200
commit68454e08126e3212d3df1c8e5502e4edbb951c88 (patch)
treec475b9c97e07b2433031d992a0c2930f3e57feed /doc
parent10b5abb9a0804af968ef6e77b69a1dbc2d714133 (diff)
downloadpandoc-68454e08126e3212d3df1c8e5502e4edbb951c88.tar.gz
doc/lua-filters.md: document Underline type and constructor
Diffstat (limited to 'doc')
-rw-r--r--doc/lua-filters.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index cc728eeec..7cba5e3a9 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -1465,6 +1465,22 @@ Fields:
`tag`, `t`
: the literal `Superscript` (string)
+### Underline {#type-underline}
+
+Underlined text
+
+Values of this type can be created with the
+[`pandoc.Underline`](#pandoc.underline) constructor.
+
+Fields:
+
+`content`
+: inline content ([List] of [Inlines])
+
+`tag`, `t`
+: the literal `Underline` (string)
+
+
## Element components
### Attr {#type-attr}
@@ -2461,6 +2477,17 @@ format, and functions to filter and modify a subtree.
Returns: [Superscript](#type-superscript) object
+[`Underline (content)`]{#pandoc.underline}
+
+: Creates an Underline inline element
+
+ Parameters:
+
+ `content`:
+ : inline content
+
+ Returns: [Underline](#type-underline) object
+
## Element components
[`Attr ([identifier[, classes[, attributes]]])`]{#pandoc.attr}