From dab83dbc14493387b6558f19c52172e40ba66cb1 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" <mrstallion@nobody.nowhere.fauxdomain.ext> Date: Sat, 7 Dec 2019 09:22:49 -0600 Subject: [PATCH] Fix [big] and [sub] --- bbcode/core.ts | 1 + bbcode/standard.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bbcode/core.ts b/bbcode/core.ts index 6859036..bf7e71e 100644 --- a/bbcode/core.ts +++ b/bbcode/core.ts @@ -61,6 +61,7 @@ export class CoreBBCodeParser extends BBCodeParser { this.addTag(new BBCodeSimpleTag('s', 'del')); this.addTag(new BBCodeSimpleTag('noparse', 'span', [], [])); this.addTag(new BBCodeSimpleTag('sub', 'sub', [], ['b', 'i', 'u', 's', 'color'])); + this.addTag(new BBCodeSimpleTag('big', 'span', ['bigText'], ['b', 'i', 'u', 's', 'color'])); this.addTag(new BBCodeSimpleTag('sup', 'sup', [], ['b', 'i', 'u', 's', 'color'])); this.addTag(new BBCodeCustomTag('color', (parser, parent, param) => { const cregex = /^(red|blue|white|yellow|pink|gray|green|orange|purple|black|brown|cyan)$/; diff --git a/bbcode/standard.ts b/bbcode/standard.ts index 8bd158e..faa6635 100644 --- a/bbcode/standard.ts +++ b/bbcode/standard.ts @@ -56,8 +56,9 @@ export class StandardBBCodeParser extends CoreBBCodeParser { this.addTag(new BBCodeSimpleTag('justify', 'span', ['justifyText'])); this.addTag(new BBCodeSimpleTag('big', 'span', ['bigText'], ['url', 'i', 'u', 'b', 'color', 's'])); this.addTag(new BBCodeSimpleTag('small', 'span', ['smallText'], ['url', 'i', 'u', 'b', 'color', 's'])); + this.addTag(new BBCodeSimpleTag('sub', 'span', ['smallText'], ['url', 'i', 'u', 'b', 'color', 's'])); this.addTag(new BBCodeSimpleTag('indent', 'div', ['indentText'])); - this.addTag(new BBCodeSimpleTag('heading', 'h2', [], ['url', 'i', 'u', 'b', 'color', 's'])); + this.addTag(new BBCodeSimpleTag('heading', 'h2', [], ['url', 'i', 'u', 'b', 'color', 's', 'big', 'sub'])); this.addTag(new BBCodeSimpleTag('row', 'div', ['row'])); this.addTag(new BBCodeCustomTag('col', (parser, parent, param) => { const col = parser.createElement('div');