()
| 111 | } |
| 112 | |
| 113 | createContainerElement() { |
| 114 | for (const key in this.attributes) { |
| 115 | const value = this.attributes[key] |
| 116 | const config = getTextConfig(key) |
| 117 | if (config) { |
| 118 | if (config.groupTagName) { |
| 119 | const attributes = {} |
| 120 | attributes[key] = value |
| 121 | return makeElement(config.groupTagName, attributes) |
| 122 | } |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | preserveSpaces(string) { |
| 128 | if (this.context.isLast) { |
nothing calls this directly
no test coverage detected