1 Repo
Rendering engines that produce HTML by processing a linear stream of structural events.
Distinct from Code-to-HTML Rendering: Distinct from Code-to-HTML Rendering: focuses on the event-driven architectural approach to generating HTML rather than just the transformation of code strings.
Explore 1 awesome GitHub repository matching user interface & experience · Event-Driven Renderers. Refine with filters or upvote what's useful.
pulldown-cmark is a pull-parsing library that transforms Markdown text into a stream of events based on the CommonMark specification. It functions as an event-based processor that represents document structure as an iterator of events rather than a concrete syntax tree, serving as both a parser and a renderer to convert Markdown into HTML strings. The library is designed for memory efficiency by processing text as a stream to minimize resource usage. It supports programmatic document transformation, allowing users to map or filter the event stream before final rendering. The project includes
Implements an event-driven rendering process to convert structural Markdown events into HTML strings.