* Inline HTML tags (` `, ` `, ` `, ` `, ` `) render via * `inlineRenderer/renderer/htmlTag.ts`: each tag becomes an actual element * wrapped with `.mu-inline-rule.mu-raw-html`. We assert: * - The tag renders inline (an element with the right tagName mounts). * - getMarkdo
| 9 | */ |
| 10 | |
| 11 | interface ITagCase { |
| 12 | label: string; |
| 13 | tag: 'u' | 'mark' | 'sup' | 'sub'; |
| 14 | markdown: string; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Generic tags routed through `htmlTag.ts` mount the actual `<u>` / `<mark>` |
nothing calls this directly
no outgoing calls
no test coverage detected