diff --git a/client/web/plugins/com.msgbyte.bbcode/src/tags/__all__.ts b/client/web/plugins/com.msgbyte.bbcode/src/tags/__all__.ts index 863723a4..9e51fc98 100644 --- a/client/web/plugins/com.msgbyte.bbcode/src/tags/__all__.ts +++ b/client/web/plugins/com.msgbyte.bbcode/src/tags/__all__.ts @@ -8,11 +8,14 @@ import { EmojiTag } from './EmojiTag'; import { MarkdownTag } from './MarkdownTag'; import { BoldTag } from './BoldTag'; import { ItalicTag } from './ItalicTag'; -import { UnderlinedTag } from './underlinedTag'; +import { UnderlinedTag } from './UnderlinedTag'; import { DeleteTag } from './DeleteTag'; import './styles.less'; +/** + * Reference: https://en.wikipedia.org/wiki/BBCode + */ registerBBCodeTag('_text', PlainText); registerBBCodeTag('b', BoldTag); registerBBCodeTag('i', ItalicTag);