With template strings coming to ES6, the backtick (`
) means something in Markdown and in JavaScript. If you write this:
To display a message, write `alert(`hello world!`)`.
it'll render like this:
To display a message, write
alert(
hello world!)
.