How to escape backslash bracket (\[) in Markdown?

前端 未结 5 1463
心在旅途
心在旅途 2021-01-03 17:14

How does one escape the \"backslash square brackets\" \\[ \\] sequence in Markdown for GitHub? The sequence produces a

...         


        
5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-03 18:06

    This has been fixed on github.com. I'm not sure when, but you can now escape square brackets with a single backlash. EG

    \[Hello\]
    

    is rendered as

    [Hello]

提交回复
热议问题