diff --git a/src/core/view/components/rich-text/nodes-parser.js b/src/core/view/components/rich-text/nodes-parser.js index c7a46ba1cfad7f47b48ba7b7570066ad195b109e..684444ff4cd713daa9d8cc6b39e810e5f688b3e5 100644 --- a/src/core/view/components/rich-text/nodes-parser.js +++ b/src/core/view/components/rich-text/nodes-parser.js @@ -6,9 +6,18 @@ import { const TAGS = { a: '', abbr: '', + address: '', + article: '', + aside: '', b: '', + bdi: '', + bdo: ['dir'], + big: '', blockquote: '', br: '', + caption: '', + center: '', + cite: '', code: '', col: ['span', 'width'], colgroup: ['span', 'width'], @@ -19,12 +28,15 @@ const TAGS = { dt: '', em: '', fieldset: '', + font: '', + footer: '', h1: '', h2: '', h3: '', h4: '', h5: '', h6: '', + header: '', hr: '', i: '', img: ['alt', 'src', 'height', 'width'], @@ -32,20 +44,30 @@ const TAGS = { label: '', legend: '', li: '', + mark: '', + nav: '', ol: ['start', 'type'], p: '', + pre: '', q: '', + rt: '', + ruby: '', + s: '', + section: '', + small: '', span: '', strong: '', sub: '', sup: '', table: ['width'], tbody: '', - td: ['colspan', 'rowspan', 'height', 'width'], + td: ['colspan', 'height', 'rowspan', 'width'], tfoot: '', - th: ['colspan', 'rowspan', 'height', 'width'], + th: ['colspan', 'height', 'rowspan', 'width'], thead: '', - tr: '', + tr: ['colspan', 'height', 'rowspan', 'width'], + tt: '', + u: '', ul: '' } const CHARS = {