We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've read a few times that using RegEx for markdown parsing is not ideal, iirc, because the regex can't capture certain markdown scenarios.
A character reader could be implemented with Fold:
string = "_this_ is **markdown**"; Fold[ lex, "<start_markdown>", Characters@string ]
could add DataStructure into this
string = "_this_ is **markdown**"; ds = CreateDataStructure["Stack"]; Fold[ lex[ds], "<start_markdown>", Characters@string ]
Then the lex function would update the stack.
The text was updated successfully, but these errors were encountered:
dishmint
No branches or pull requests
I've read a few times that using RegEx for markdown parsing is not ideal, iirc, because the regex can't capture certain markdown scenarios.
A character reader could be implemented with Fold:
could add DataStructure into this
Then the lex function would update the stack.
The text was updated successfully, but these errors were encountered: