FastRenderer is a high-performance markdown renderer optimized for terminal output. It directly parses and renders markdown without building an intermediate AST.
| 270 | // FastRenderer is a high-performance markdown renderer optimized for terminal output. |
| 271 | // It directly parses and renders markdown without building an intermediate AST. |
| 272 | type FastRenderer struct { |
| 273 | width int |
| 274 | } |
| 275 | |
| 276 | // NewFastRenderer creates a new fast markdown renderer with the given width. |
| 277 | func NewFastRenderer(width int) *FastRenderer { |
nothing calls this directly
no outgoing calls
no test coverage detected