get in there, semicolon

This commit is contained in:
Will Boyd
2024-02-21 10:31:26 -05:00
parent 8c0c6b3f2a
commit 6fcdb82b90
+1 -1
View File
@@ -77,7 +77,7 @@ function getPostContent(post, turndownService, config) {
// preserve "more" separator, max one per post, optionally with custom label
// by escaping angle brackets (will be unescaped during turndown conversion)
content = content.replace(/<(!--more( .*)?--)>/, '&lt;$1&gt;')
content = content.replace(/<(!--more( .*)?--)>/, '&lt;$1&gt;');
// use turndown to convert HTML to Markdown
content = turndownService.turndown(content);