github/cmark-gfm

info string for inline code

Opened this issue · 0 comments

Other markdown implementations support info strings for inline code:

e.g. GitHub Pages uses Jekyll and by extension kramdown where you can use:

`puts "Hello World"`{:.ruby}

Pandoc has a slightly different syntax:

`puts "Hello World"`{.ruby}

It would be nice if it was possible to enable info strings for inline code following one of the above conventions.