forked from rentzsch/markdownlive
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPageSyntax.plist
92 lines (92 loc) · 1.9 KB
/
PageSyntax.plist
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>todo-zone</key>
<dict>
<key>color</key>
<string>zone</string>
<key>pattern</key>
<string>^●\s*.*$</string>
</dict>
<key>todo-checked</key>
<dict>
<key>color</key>
<string>checked</string>
<key>pattern</key>
<string>^✓\s*.*$</string>
</dict>
<key>todo-unchecked</key>
<dict>
<key>color</key>
<string>default</string>
<key>pattern</key>
<string>^☐\s*.*$</string>
</dict>
<key>list-item</key>
<dict>
<key>color</key>
<string>default</string>
<key>pattern</key>
<string>^\*\s+.*$</string>
</dict>
<key>markdown-header-1</key>
<dict>
<key>size</key>
<integer>14</integer>
<key>isBold</key>
<true/>
<key>color</key>
<string>title</string>
<key>pattern</key>
<string>^(# )(.*?)($| #+$)</string>
</dict>
<key>markdown-header-2</key>
<dict>
<key>color</key>
<string>subtitle</string>
<key>isBold</key>
<true/>
<key>pattern</key>
<string>^(## )(.*?)($| #+$)</string>
</dict>
<key>markdown-em</key>
<dict>
<key>color</key>
<string>em</string>
<key>patternGroup</key>
<integer>2</integer>
<key>pattern</key>
<string>(^|[^\*])(\*[^\s\*]([^\*\n]+)\*)</string>
</dict>
<key>markdown-strong</key>
<dict>
<key>isBold</key>
<true/>
<key>color</key>
<string>strong</string>
<key>pattern</key>
<string>\*{2}(.+?)\*{2}</string>
</dict>
<key>markdown-header-3</key>
<dict>
<key>color</key>
<string>title3</string>
<key>isBold</key>
<true/>
<key>pattern</key>
<string>^(### )(.*?)($| #+$)</string>
</dict>
<key>code</key>
<dict>
<key>patternGroup</key>
<integer>1</integer>
<key>backgroundColor</key>
<string>codeBackground</string>
<key>color</key>
<string>code</string>
<key>pattern</key>
<string>^ {4}(.*?)$</string>
</dict>
</dict>
</plist>