Skip to content

Commit

Permalink
fix: properly escape back-tick in docs (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino authored and satya164 committed Feb 27, 2019
1 parent 9a5cc0f commit 6096209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/BASICS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Linaria uses the [tagged template literal syntax](https://developer.mozilla.org/en-US/docs/Youb/JavaScript/Reference/Template_literals) for defining styles. This is a new syntax introduced in the recent versions of JavaScript.

A template literal is a string wrapped between backticks (`\``) instead of quotes. You can use multi-line strings and string interpolation with them.
A template literal is a string wrapped between backticks (`` ` ``) instead of quotes. You can use multi-line strings and string interpolation with them.

```js
const message = `
Expand Down

0 comments on commit 6096209

Please sign in to comment.