27 lines
812 B
TypeScript
27 lines
812 B
TypeScript
|
import { SANITIZE_OPTIONS, TEXT_WITH_HTML_RULES } from '@shared/core-utils'
|
||
|
|
||
|
const sanitizeHtml = require('sanitize-html')
|
||
|
const markdownItEmoji = require('markdown-it-emoji/light')
|
||
|
const MarkdownItClass = require('markdown-it')
|
||
|
const markdownIt = new MarkdownItClass('default', { linkify: true, breaks: true, html: true })
|
||
|
|
||
|
markdownIt.enable(TEXT_WITH_HTML_RULES)
|
||
|
markdownIt.use(markdownItEmoji)
|
||
|
|
||
|
const toSafeHtml = text => {
|
||
|
// Restore line feed
|
||
|
const textWithLineFeed = text.replace(/<br.?\/?>/g, '\r\n')
|
||
|
|
||
|
// Convert possible markdown (emojis, emphasis and lists) to html
|
||
|
const html = markdownIt.render(textWithLineFeed)
|
||
|
|
||
|
// Convert to safe Html
|
||
|
return sanitizeHtml(html, SANITIZE_OPTIONS)
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
toSafeHtml
|
||
|
}
|