feat(web): parse markdown into the input model - #727
Open
sbarczyk wants to merge 5 commits into
Open
Conversation
sbarczyk
marked this pull request as ready for review
August 28, 2026 15:01
sbarczyk
force-pushed
the
feat/web-input-import
branch
from
August 31, 2026 12:14
f146ecd to
d85df57
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Web port of the markdown import, from Kotlin
InputParser.ktandInputRemend.kt, cross-checked against iOS:InputRemendcloses dangling delimiters before parsing (stack-based scan, link url mode, backslash escapes)InputParserwalks the shared md4c AST into plain text plus formatting and block ranges: UTF-16 offsets come from the growing buffer, list depth from AST nesting, and blank-line runs are replayed from the source since md4c collapses thempermissiveAutolinksparameter so the input can disable bare-url autolinking like Android does;build.shnow links withem++(required by current emscripten) andmd4c.jsis rebuiltJest unit tests included. Stacked on #716.