Highlighting VBA code in R markdown -
is there way highlight vba code in r markdown code chunk e.g.
{r, engine="vbnet", eval = false} sub myfirstsub() msgbox "hello world!" end sub
will not give desired result (since vbnet unknown language engine).
{r, eval = false} sub myfirstsub() msgbox "hello world!" end sub
partly work e.g. keyword sub highlighted also.
Comments
Post a Comment