Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitHub Markdown - double brackets

I've been trying to find some documentation on how to do this, but I can't seem to find anything similar. I'm trying to add double brackets to a code block in GitHub MD:

[[something]]
like image 819
Fluidbyte Avatar asked Nov 18 '25 23:11

Fluidbyte


1 Answers

Either of the following seem to work:

Inline:

this is some `[[code]]`

Block with spaces:

    this is some [[code]]
like image 142
andypaxo Avatar answered Nov 22 '25 04:11

andypaxo