File: escaped-quotes.expect.txt

package info (click to toggle)
highlight.js 9.18.5%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 6,672 kB
  • sloc: javascript: 40,928; python: 342; makefile: 160; sh: 11
file content (43 lines) | stat: -rw-r--r-- 1,796 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<span class="hljs-string">'''text \''' text'''</span>
<span class="hljs-string">u'''text \''' text'''</span>
<span class="hljs-string">b'''text \''' text'''</span>
<span class="hljs-string">r'''text \''' text'''</span>
<span class="hljs-string">ur'''text \''' text'''</span>
<span class="hljs-string">br'''text \''' text'''</span>

<span class="hljs-string">"""text \""" text"""</span>
<span class="hljs-string">u"""text \""" text"""</span>
<span class="hljs-string">b"""text \""" text"""</span>
<span class="hljs-string">r"""text \""" text"""</span>
<span class="hljs-string">ur"""text \""" text"""</span>
<span class="hljs-string">br"""text \""" text"""</span>

<span class="hljs-string">f'''text \''' text'''</span>
<span class="hljs-string">fr'''text \''' text'''</span>
<span class="hljs-string">rf'''text \''' text'''</span>

<span class="hljs-string">f"""text \""" text"""</span>
<span class="hljs-string">fr"""text \""" text"""</span>
<span class="hljs-string">rf"""text \""" text"""</span>

<span class="hljs-string">u'text \' text'</span>
<span class="hljs-string">r'text \' text'</span>
<span class="hljs-string">ur'text \' text'</span>

<span class="hljs-string">u"text \" text"</span>
<span class="hljs-string">r"text \" text"</span>
<span class="hljs-string">ur"text \" text"</span>

<span class="hljs-string">b'text \' text'</span>
<span class="hljs-string">br'text \' text'</span>

<span class="hljs-string">b"text \" text"</span>
<span class="hljs-string">br"text \" text"</span>

<span class="hljs-string">f'text \' text'</span>
<span class="hljs-string">fr'text \' text'</span>
<span class="hljs-string">rf'text \' text'</span>

<span class="hljs-string">f"text \" text"</span>
<span class="hljs-string">fr"text \" text"</span>
<span class="hljs-string">rf"text \" text"</span>