You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The backtick syntax, when embedded in a backticked portion of code, will end at the first occurrence of ```
```no-highlight
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
var foo = 1; // no syntax highlighting in indented blocks either.
```
Shouldn't it check for indentation?
The text was updated successfully, but these errors were encountered:
you just wrap your code in sets of 4 backticks like so:
````no-highlight
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
var foo = 1; // no syntax highlighting in indented blocks either.
````
...but that's a good idea to check for indentation
The backtick syntax, when embedded in a backticked portion of code, will end at the first occurrence of ```
Shouldn't it check for indentation?
The text was updated successfully, but these errors were encountered: