Y
Hacker News
new
|
ask
|
show
|
jobs
by
nodesocket
485 days ago
How is it parsing? Just normal string and regex matching or transforming markdown to an intermediate structured language?
1 comments
yshavit
485 days ago
For the markdown, I'm using
https://github.com/wooorm/markdown-rs
, which is a formal parser that produces an AST. For the query language, I have a very simple hand-rolled parser.
link