I wanted to know if it’s possible to highlight specific lines of code in a code block? (like with a yellow background, not syntax highlighting)
For example:
def add(a,b)
c = a + b
puts c # I want to highlight this line
end
I am using middleman-syntax gem which itself uses rouge. Fenced code blocks and syntax highlighting all works perfectly, however I haven’t been able to get this “background highlighting” trick working. Would love some help.