Closed greghendershott closed 10 years ago
(parse-markdown "```racket\n'(foo)\n```") ;; => '((pre ((class "brush: racket")) (code () "'(foo)"))) ;; good (parse-markdown "```racket\n`(foo)\n```") ;; => '((p () (code () "racket\n`(foo)"))) ;; bad
First glance, I don't understand why. $verbatim/fenced is using $any-line which should not be affected by the ``. Somehow it is getting parsed as an inline$code`, instead.
$verbatim/fenced
$any-line
``. Somehow it is getting parsed as an inline
First glance, I don't understand why.
$verbatim/fenced
is using$any-line
which should not be affected by the``. Somehow it is getting parsed as an inline
$code`, instead.