(i: string)
| 167 | // tags added by exportHtmlAdditionalTagsWithData will be exported as <span> with |
| 168 | // data attributes |
| 169 | const isSpanWithData = (i: string) => { |
| 170 | // @ts-ignore |
| 171 | const property = props[i]; |
| 172 | return Array.isArray(property); |
| 173 | }; |
| 174 | |
| 175 | const emitOpenTag = (i: string) => { |
| 176 | openTags.unshift(i); |