You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't disagree with this. I wonder what the performance implications would be.
In any case, we use html-pipeline, an open-source tool written by a GitHubber, to support syntax highlighting. Sorry to reroute you, but I suggest you open an Issue on that repository for this. I'll close this one out.
You'd basically need to change this line to match on code tags, as well as pre.
Currently, you can syntax-highlight code blocks. For example,
renders as
However, you cannot do the same with inline code such as
or
both of which get rendered as
main :: IO ()
(without syntax highlighting) when used inline. It would be nice to have something likethat gives you inline syntax-highlighting (right now, that would render as
haskell main :: IO ()
).The text was updated successfully, but these errors were encountered: