How to escape backticks in Markdown

How to escape backticks when you're trying to write inline code blocks with Markdown

So recently I was writing an article on Slack formatting and ran into quite a bit of difficulty with trying to do inline code formatting around a backtick, like this: `

So how did I end up with this? You have to wrap your backtick in double backticks to achieve this (it gets terribly meta).

`` ` ``

I ran into even more difficulty trying to put three backticks into inline code and eventually gave up! So if you have any idea how this is done, please let me know!


Recent posts View all

Web Dev

Creating draft posts in Jekyll

How to create and develop with draft posts in Jekyll

Ruby

Forcing a Rails database column to be not null

How you can force a table column to always have something in it with Rails