Use commonjs instead of esm typescript for light emojis

pull/3085/head
kimsible 2020-08-09 13:05:47 +02:00 committed by Chocobozzz
parent 0672dc769b
commit 04c7f70175
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,4 @@
import * as MarkdownIt from 'markdown-it' import * as MarkdownIt from 'markdown-it'
import MarkdownItEmoji from 'markdown-it-emoji'
import { buildVideoLink } from 'src/assets/player/utils' import { buildVideoLink } from 'src/assets/player/utils'
import { Injectable } from '@angular/core' import { Injectable } from '@angular/core'
import { HtmlRendererService } from './html-renderer.service' import { HtmlRendererService } from './html-renderer.service'
@ -92,7 +91,9 @@ export class MarkdownService {
this.markdownParsers[ name ] = await this.createMarkdownIt(config) this.markdownParsers[ name ] = await this.createMarkdownIt(config)
if (withEmoji) { if (withEmoji) {
this.markdownParsers[ name ].use(MarkdownItEmoji) // TODO: write types
const emoji = require('markdown-it-emoji/light')
this.markdownParsers[ name ].use(emoji)
} }
} }