From 68454e08126e3212d3df1c8e5502e4edbb951c88 Mon Sep 17 00:00:00 2001
From: Albert Krewinkel <albert@zeitkraut.de>
Date: Sun, 4 Oct 2020 21:55:09 +0200
Subject: [PATCH] doc/lua-filters.md: document Underline type and constructor

---
 doc/lua-filters.md | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

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}