Skip to content

Commit f9163cb

Browse files
committed
fix highlighting
1 parent 434fd39 commit f9163cb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

using-functions.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,12 @@ world
9999
If you want to print a backslash, you need to **escape** it by typing
100100
two backslashes:
101101

102-
```py
103-
>>> print('hello\\nworld')
104-
hello\nworld
105-
>>>
106-
```
102+
[comment]: # (For some reason, GitHub's syntax highlighting doesn't)
103+
[comment]: # (work here.)
104+
105+
>>> print('hello\\nworld')
106+
hello\nworld
107+
>>>
107108

108109
You can also pass multiple arguments to the print function. Separate
109110
them with commas, and print will add spaces between them.

0 commit comments

Comments
 (0)