We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9538d6 + 12f74f3 commit 17b7614Copy full SHA for 17b7614
1 file changed
atwiki/test/test_parser.py
@@ -6,13 +6,13 @@
6
7
from atwiki.parser import AtWikiStripper
8
9
-INPUT = '''
+INPUT = r"""
10
// This is a comment.
11
12
&nivocideo(url) &color(#ffffff){white} and black
13
14
[[Link1]] / [[Link2>URL]]
15
-Styles: ''bold'' \'\'\'italic\'\'\' %%del%% ''bold''
+Styles: ''bold'' '''italic''' %%del%% ''bold''
16
Special: '' A ✔︎ ( ) { } \ / ! ''
17
18
@@ -36,9 +36,9 @@
36
#exk(){{{{{
37
block 2
38
}}}}}
39
-'''
+"""
40
41
-OUTPUT = '''
+OUTPUT = r"""
42
43
white and black
44
@@ -62,8 +62,7 @@
62
pre
63
64
block 1
65
-block 2\
66
+block 2"""
67
68
class AtWikiStripperTest(TestCase):
69
def test_doc(self):
0 commit comments