(start: string, end: string)
| 19 | } |
| 20 | |
| 21 | const handleHTML = (start: string, end: string): void => { |
| 22 | const htmlStart: HTML = { type: 'html', value: start } |
| 23 | const htmlEnd: HTML = { type: 'html', value: end } |
| 24 | children = [htmlStart, ...children, htmlEnd] |
| 25 | } |
| 26 | |
| 27 | if (node.bold) handleStyling('strong') |
| 28 | if (node.italic) handleStyling('emphasis') |
no outgoing calls
no test coverage detected
searching dependent graphs…