How does one escape backticks in markdown?

后端 未结 3 483
天涯浪人
天涯浪人 2020-12-29 02:54

I am writing some documentation in markdown and I want to document how to create a text file using a bash HEREDOC. Here is the command I want to document:

3条回答
  •  爱一瞬间的悲伤
    2020-12-29 03:22

    I think you need to change the "delimiter" from a single back tick to a double...

    i.e.: ``value3=\`hostname\` ``

    should render

    > value3=\`hostname\`

提交回复
热议问题