-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathformat14.py
More file actions
19 lines (16 loc) · 835 Bytes
/
format14.py
File metadata and controls
19 lines (16 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
a = R'''\n
{% for item in seq %}
\n {{ item }} \n \N{BLACK SPADE SUIT}
{% endfor %}
'''
a : source.python
: source.python
= : keyword.operator.assignment.python, source.python
: source.python
R : source.python, storage.type.string.python, string.quoted.raw.multi.python
''' : punctuation.definition.string.begin.python, source.python, string.quoted.raw.multi.python
\n : source.python, string.quoted.raw.multi.python
{% for item in seq %} : source.python, string.quoted.raw.multi.python
\n {{ item }} \n \N{BLACK SPADE SUIT} : source.python, string.quoted.raw.multi.python
{% endfor %} : source.python, string.quoted.raw.multi.python
''' : punctuation.definition.string.end.python, source.python, string.quoted.raw.multi.python