| 14 | export { BLOCK_TAGS, RAW_TEXT_TAGS, VOID_TAGS } from "./constants"; |
| 15 | |
| 16 | export interface RehtmlOptions { |
| 17 | /** Strip trailing incomplete tags (default: true) */ |
| 18 | stripIncomplete?: boolean; |
| 19 | /** Auto-close unclosed tags for rendering (default: true) */ |
| 20 | closeTags?: boolean; |
| 21 | /** Split into stable/live blocks (default: true) */ |
| 22 | splitBlocks?: boolean; |
| 23 | } |
| 24 | |
| 25 | export interface RehtmlResult { |
| 26 | /** HTML ready for rendering (repaired, not yet sanitized) */ |
nothing calls this directly
no outgoing calls
no test coverage detected