commit c90b906bdc1242efdd43e82edabbb70080eba90e parent 61a7791bc68e3098832fe98d11e58f6e74c0b71b Author: William Casarin <jb55@jb55.com> Date: Wed, 27 Oct 2021 18:07:47 -0700 handle html Diffstat:
M | index.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.js b/index.js @@ -24,7 +24,7 @@ function parse_links(text) function process_item(root, lines, item) { - if (item.type === 'paragraph' || item.type === 'markdown') { + if (item.type === 'paragraph' || item.type === 'markdown' || item.type === 'html') { const text = item.text.trim() const links = parse_links(text)