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

Ruby

Iterate over indexed params in Rails

When your API isn't Rails-shaped, sometimes you need to handle input differently

Web Dev Jekyll

Running Jekyll from inside VS Code

How to set up your VS Code to run Jekyll without needing extra extensions