react-markdown-table-ts 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +7 -2014
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +8 -1997
- package/dist/index.esm.js.map +1 -1
- package/dist/types.d.ts +5 -18
- package/package.json +68 -506
- package/styles/prism-line-numbers.css +0 -40
- package/styles/prism.css +0 -140
- package/styles/themes/prism-coy.css +0 -219
- package/styles/themes/prism-dark.css +0 -129
- package/styles/themes/prism-funky.css +0 -130
- package/styles/themes/prism-okaidia.css +0 -123
- package/styles/themes/prism-solarizedlight.css +0 -150
- package/styles/themes/prism-tomorrow.css +0 -122
- package/styles/themes/prism.css +0 -140
package/styles/prism.css
DELETED
@@ -1,140 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* prism.js default theme for JavaScript, CSS and HTML
|
3
|
-
* Based on dabblet (http://dabblet.com)
|
4
|
-
* @author Lea Verou
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
color: black;
|
10
|
-
background: none;
|
11
|
-
text-shadow: 0 1px white;
|
12
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
13
|
-
font-size: 1em;
|
14
|
-
text-align: left;
|
15
|
-
white-space: pre;
|
16
|
-
word-spacing: normal;
|
17
|
-
word-break: normal;
|
18
|
-
word-wrap: normal;
|
19
|
-
line-height: 1.5;
|
20
|
-
|
21
|
-
-moz-tab-size: 4;
|
22
|
-
-o-tab-size: 4;
|
23
|
-
tab-size: 4;
|
24
|
-
|
25
|
-
-webkit-hyphens: none;
|
26
|
-
-moz-hyphens: none;
|
27
|
-
-ms-hyphens: none;
|
28
|
-
hyphens: none;
|
29
|
-
}
|
30
|
-
|
31
|
-
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
32
|
-
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
33
|
-
text-shadow: none;
|
34
|
-
background: #b3d4fc;
|
35
|
-
}
|
36
|
-
|
37
|
-
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
38
|
-
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
39
|
-
text-shadow: none;
|
40
|
-
background: #b3d4fc;
|
41
|
-
}
|
42
|
-
|
43
|
-
@media print {
|
44
|
-
code[class*="language-"],
|
45
|
-
pre[class*="language-"] {
|
46
|
-
text-shadow: none;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
/* Code blocks */
|
51
|
-
pre[class*="language-"] {
|
52
|
-
padding: 1em;
|
53
|
-
margin: .5em 0;
|
54
|
-
overflow: auto;
|
55
|
-
}
|
56
|
-
|
57
|
-
:not(pre) > code[class*="language-"],
|
58
|
-
pre[class*="language-"] {
|
59
|
-
background: #f5f2f0;
|
60
|
-
}
|
61
|
-
|
62
|
-
/* Inline code */
|
63
|
-
:not(pre) > code[class*="language-"] {
|
64
|
-
padding: .1em;
|
65
|
-
border-radius: .3em;
|
66
|
-
white-space: normal;
|
67
|
-
}
|
68
|
-
|
69
|
-
.token.comment,
|
70
|
-
.token.prolog,
|
71
|
-
.token.doctype,
|
72
|
-
.token.cdata {
|
73
|
-
color: slategray;
|
74
|
-
}
|
75
|
-
|
76
|
-
.token.punctuation {
|
77
|
-
color: #999;
|
78
|
-
}
|
79
|
-
|
80
|
-
.token.namespace {
|
81
|
-
opacity: .7;
|
82
|
-
}
|
83
|
-
|
84
|
-
.token.property,
|
85
|
-
.token.tag,
|
86
|
-
.token.boolean,
|
87
|
-
.token.number,
|
88
|
-
.token.constant,
|
89
|
-
.token.symbol,
|
90
|
-
.token.deleted {
|
91
|
-
color: #905;
|
92
|
-
}
|
93
|
-
|
94
|
-
.token.selector,
|
95
|
-
.token.attr-name,
|
96
|
-
.token.string,
|
97
|
-
.token.char,
|
98
|
-
.token.builtin,
|
99
|
-
.token.inserted {
|
100
|
-
color: #690;
|
101
|
-
}
|
102
|
-
|
103
|
-
.token.operator,
|
104
|
-
.token.entity,
|
105
|
-
.token.url,
|
106
|
-
.language-css .token.string,
|
107
|
-
.style .token.string {
|
108
|
-
color: #9a6e3a;
|
109
|
-
/* This background color was intended by the author of this theme. */
|
110
|
-
background: hsla(0, 0%, 100%, .5);
|
111
|
-
}
|
112
|
-
|
113
|
-
.token.atrule,
|
114
|
-
.token.attr-value,
|
115
|
-
.token.keyword {
|
116
|
-
color: #07a;
|
117
|
-
}
|
118
|
-
|
119
|
-
.token.function,
|
120
|
-
.token.class-name {
|
121
|
-
color: #DD4A68;
|
122
|
-
}
|
123
|
-
|
124
|
-
.token.regex,
|
125
|
-
.token.important,
|
126
|
-
.token.variable {
|
127
|
-
color: #e90;
|
128
|
-
}
|
129
|
-
|
130
|
-
.token.important,
|
131
|
-
.token.bold {
|
132
|
-
font-weight: bold;
|
133
|
-
}
|
134
|
-
.token.italic {
|
135
|
-
font-style: italic;
|
136
|
-
}
|
137
|
-
|
138
|
-
.token.entity {
|
139
|
-
cursor: help;
|
140
|
-
}
|
@@ -1,219 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
|
3
|
-
* Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
|
4
|
-
* @author Tim Shedor
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
color: black;
|
10
|
-
background: none;
|
11
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
12
|
-
font-size: 1em;
|
13
|
-
text-align: left;
|
14
|
-
white-space: pre;
|
15
|
-
word-spacing: normal;
|
16
|
-
word-break: normal;
|
17
|
-
word-wrap: normal;
|
18
|
-
line-height: 1.5;
|
19
|
-
|
20
|
-
-moz-tab-size: 4;
|
21
|
-
-o-tab-size: 4;
|
22
|
-
tab-size: 4;
|
23
|
-
|
24
|
-
-webkit-hyphens: none;
|
25
|
-
-moz-hyphens: none;
|
26
|
-
-ms-hyphens: none;
|
27
|
-
hyphens: none;
|
28
|
-
}
|
29
|
-
|
30
|
-
/* Code blocks */
|
31
|
-
pre[class*="language-"] {
|
32
|
-
position: relative;
|
33
|
-
margin: .5em 0;
|
34
|
-
overflow: visible;
|
35
|
-
padding: 1px;
|
36
|
-
}
|
37
|
-
|
38
|
-
pre[class*="language-"] > code {
|
39
|
-
position: relative;
|
40
|
-
z-index: 1;
|
41
|
-
border-left: 10px solid #358ccb;
|
42
|
-
box-shadow: -1px 0px 0px 0px #358ccb, 0px 0px 0px 1px #dfdfdf;
|
43
|
-
background-color: #fdfdfd;
|
44
|
-
background-image: linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%);
|
45
|
-
background-size: 3em 3em;
|
46
|
-
background-origin: content-box;
|
47
|
-
background-attachment: local;
|
48
|
-
}
|
49
|
-
|
50
|
-
code[class*="language-"] {
|
51
|
-
max-height: inherit;
|
52
|
-
height: inherit;
|
53
|
-
padding: 0 1em;
|
54
|
-
display: block;
|
55
|
-
overflow: auto;
|
56
|
-
}
|
57
|
-
|
58
|
-
/* Margin bottom to accommodate shadow */
|
59
|
-
:not(pre) > code[class*="language-"],
|
60
|
-
pre[class*="language-"] {
|
61
|
-
background-color: #fdfdfd;
|
62
|
-
-webkit-box-sizing: border-box;
|
63
|
-
-moz-box-sizing: border-box;
|
64
|
-
box-sizing: border-box;
|
65
|
-
margin-bottom: 1em;
|
66
|
-
}
|
67
|
-
|
68
|
-
/* Inline code */
|
69
|
-
:not(pre) > code[class*="language-"] {
|
70
|
-
position: relative;
|
71
|
-
padding: .2em;
|
72
|
-
border-radius: 0.3em;
|
73
|
-
color: #c92c2c;
|
74
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
75
|
-
display: inline;
|
76
|
-
white-space: normal;
|
77
|
-
}
|
78
|
-
|
79
|
-
pre[class*="language-"]:before,
|
80
|
-
pre[class*="language-"]:after {
|
81
|
-
content: '';
|
82
|
-
display: block;
|
83
|
-
position: absolute;
|
84
|
-
bottom: 0.75em;
|
85
|
-
left: 0.18em;
|
86
|
-
width: 40%;
|
87
|
-
height: 20%;
|
88
|
-
max-height: 13em;
|
89
|
-
box-shadow: 0px 13px 8px #979797;
|
90
|
-
-webkit-transform: rotate(-2deg);
|
91
|
-
-moz-transform: rotate(-2deg);
|
92
|
-
-ms-transform: rotate(-2deg);
|
93
|
-
-o-transform: rotate(-2deg);
|
94
|
-
transform: rotate(-2deg);
|
95
|
-
}
|
96
|
-
|
97
|
-
pre[class*="language-"]:after {
|
98
|
-
right: 0.75em;
|
99
|
-
left: auto;
|
100
|
-
-webkit-transform: rotate(2deg);
|
101
|
-
-moz-transform: rotate(2deg);
|
102
|
-
-ms-transform: rotate(2deg);
|
103
|
-
-o-transform: rotate(2deg);
|
104
|
-
transform: rotate(2deg);
|
105
|
-
}
|
106
|
-
|
107
|
-
.token.comment,
|
108
|
-
.token.block-comment,
|
109
|
-
.token.prolog,
|
110
|
-
.token.doctype,
|
111
|
-
.token.cdata {
|
112
|
-
color: #7D8B99;
|
113
|
-
}
|
114
|
-
|
115
|
-
.token.punctuation {
|
116
|
-
color: #5F6364;
|
117
|
-
}
|
118
|
-
|
119
|
-
.token.property,
|
120
|
-
.token.tag,
|
121
|
-
.token.boolean,
|
122
|
-
.token.number,
|
123
|
-
.token.function-name,
|
124
|
-
.token.constant,
|
125
|
-
.token.symbol,
|
126
|
-
.token.deleted {
|
127
|
-
color: #c92c2c;
|
128
|
-
}
|
129
|
-
|
130
|
-
.token.selector,
|
131
|
-
.token.attr-name,
|
132
|
-
.token.string,
|
133
|
-
.token.char,
|
134
|
-
.token.function,
|
135
|
-
.token.builtin,
|
136
|
-
.token.inserted {
|
137
|
-
color: #2f9c0a;
|
138
|
-
}
|
139
|
-
|
140
|
-
.token.operator,
|
141
|
-
.token.entity,
|
142
|
-
.token.url,
|
143
|
-
.token.variable {
|
144
|
-
color: #a67f59;
|
145
|
-
background: rgba(255, 255, 255, 0.5);
|
146
|
-
}
|
147
|
-
|
148
|
-
.token.atrule,
|
149
|
-
.token.attr-value,
|
150
|
-
.token.keyword,
|
151
|
-
.token.class-name {
|
152
|
-
color: #1990b8;
|
153
|
-
}
|
154
|
-
|
155
|
-
.token.regex,
|
156
|
-
.token.important {
|
157
|
-
color: #e90;
|
158
|
-
}
|
159
|
-
|
160
|
-
.language-css .token.string,
|
161
|
-
.style .token.string {
|
162
|
-
color: #a67f59;
|
163
|
-
background: rgba(255, 255, 255, 0.5);
|
164
|
-
}
|
165
|
-
|
166
|
-
.token.important {
|
167
|
-
font-weight: normal;
|
168
|
-
}
|
169
|
-
|
170
|
-
.token.bold {
|
171
|
-
font-weight: bold;
|
172
|
-
}
|
173
|
-
.token.italic {
|
174
|
-
font-style: italic;
|
175
|
-
}
|
176
|
-
|
177
|
-
.token.entity {
|
178
|
-
cursor: help;
|
179
|
-
}
|
180
|
-
|
181
|
-
.token.namespace {
|
182
|
-
opacity: .7;
|
183
|
-
}
|
184
|
-
|
185
|
-
@media screen and (max-width: 767px) {
|
186
|
-
pre[class*="language-"]:before,
|
187
|
-
pre[class*="language-"]:after {
|
188
|
-
bottom: 14px;
|
189
|
-
box-shadow: none;
|
190
|
-
}
|
191
|
-
|
192
|
-
}
|
193
|
-
|
194
|
-
/* Plugin styles: Line Numbers */
|
195
|
-
pre[class*="language-"].line-numbers.line-numbers {
|
196
|
-
padding-left: 0;
|
197
|
-
}
|
198
|
-
|
199
|
-
pre[class*="language-"].line-numbers.line-numbers code {
|
200
|
-
padding-left: 3.8em;
|
201
|
-
}
|
202
|
-
|
203
|
-
pre[class*="language-"].line-numbers.line-numbers .line-numbers-rows {
|
204
|
-
left: 0;
|
205
|
-
}
|
206
|
-
|
207
|
-
/* Plugin styles: Line Highlight */
|
208
|
-
pre[class*="language-"][data-line] {
|
209
|
-
padding-top: 0;
|
210
|
-
padding-bottom: 0;
|
211
|
-
padding-left: 0;
|
212
|
-
}
|
213
|
-
pre[data-line] code {
|
214
|
-
position: relative;
|
215
|
-
padding-left: 4em;
|
216
|
-
}
|
217
|
-
pre .line-highlight {
|
218
|
-
margin-top: 0;
|
219
|
-
}
|
@@ -1,129 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* prism.js Dark theme for JavaScript, CSS and HTML
|
3
|
-
* Based on the slides of the talk “/Reg(exp){2}lained/”
|
4
|
-
* @author Lea Verou
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
color: white;
|
10
|
-
background: none;
|
11
|
-
text-shadow: 0 -.1em .2em black;
|
12
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
13
|
-
font-size: 1em;
|
14
|
-
text-align: left;
|
15
|
-
white-space: pre;
|
16
|
-
word-spacing: normal;
|
17
|
-
word-break: normal;
|
18
|
-
word-wrap: normal;
|
19
|
-
line-height: 1.5;
|
20
|
-
|
21
|
-
-moz-tab-size: 4;
|
22
|
-
-o-tab-size: 4;
|
23
|
-
tab-size: 4;
|
24
|
-
|
25
|
-
-webkit-hyphens: none;
|
26
|
-
-moz-hyphens: none;
|
27
|
-
-ms-hyphens: none;
|
28
|
-
hyphens: none;
|
29
|
-
}
|
30
|
-
|
31
|
-
@media print {
|
32
|
-
code[class*="language-"],
|
33
|
-
pre[class*="language-"] {
|
34
|
-
text-shadow: none;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
pre[class*="language-"],
|
39
|
-
:not(pre) > code[class*="language-"] {
|
40
|
-
background: hsl(30, 20%, 25%);
|
41
|
-
}
|
42
|
-
|
43
|
-
/* Code blocks */
|
44
|
-
pre[class*="language-"] {
|
45
|
-
padding: 1em;
|
46
|
-
margin: .5em 0;
|
47
|
-
overflow: auto;
|
48
|
-
border: .3em solid hsl(30, 20%, 40%);
|
49
|
-
border-radius: .5em;
|
50
|
-
box-shadow: 1px 1px .5em black inset;
|
51
|
-
}
|
52
|
-
|
53
|
-
/* Inline code */
|
54
|
-
:not(pre) > code[class*="language-"] {
|
55
|
-
padding: .15em .2em .05em;
|
56
|
-
border-radius: .3em;
|
57
|
-
border: .13em solid hsl(30, 20%, 40%);
|
58
|
-
box-shadow: 1px 1px .3em -.1em black inset;
|
59
|
-
white-space: normal;
|
60
|
-
}
|
61
|
-
|
62
|
-
.token.comment,
|
63
|
-
.token.prolog,
|
64
|
-
.token.doctype,
|
65
|
-
.token.cdata {
|
66
|
-
color: hsl(30, 20%, 50%);
|
67
|
-
}
|
68
|
-
|
69
|
-
.token.punctuation {
|
70
|
-
opacity: .7;
|
71
|
-
}
|
72
|
-
|
73
|
-
.token.namespace {
|
74
|
-
opacity: .7;
|
75
|
-
}
|
76
|
-
|
77
|
-
.token.property,
|
78
|
-
.token.tag,
|
79
|
-
.token.boolean,
|
80
|
-
.token.number,
|
81
|
-
.token.constant,
|
82
|
-
.token.symbol {
|
83
|
-
color: hsl(350, 40%, 70%);
|
84
|
-
}
|
85
|
-
|
86
|
-
.token.selector,
|
87
|
-
.token.attr-name,
|
88
|
-
.token.string,
|
89
|
-
.token.char,
|
90
|
-
.token.builtin,
|
91
|
-
.token.inserted {
|
92
|
-
color: hsl(75, 70%, 60%);
|
93
|
-
}
|
94
|
-
|
95
|
-
.token.operator,
|
96
|
-
.token.entity,
|
97
|
-
.token.url,
|
98
|
-
.language-css .token.string,
|
99
|
-
.style .token.string,
|
100
|
-
.token.variable {
|
101
|
-
color: hsl(40, 90%, 60%);
|
102
|
-
}
|
103
|
-
|
104
|
-
.token.atrule,
|
105
|
-
.token.attr-value,
|
106
|
-
.token.keyword {
|
107
|
-
color: hsl(350, 40%, 70%);
|
108
|
-
}
|
109
|
-
|
110
|
-
.token.regex,
|
111
|
-
.token.important {
|
112
|
-
color: #e90;
|
113
|
-
}
|
114
|
-
|
115
|
-
.token.important,
|
116
|
-
.token.bold {
|
117
|
-
font-weight: bold;
|
118
|
-
}
|
119
|
-
.token.italic {
|
120
|
-
font-style: italic;
|
121
|
-
}
|
122
|
-
|
123
|
-
.token.entity {
|
124
|
-
cursor: help;
|
125
|
-
}
|
126
|
-
|
127
|
-
.token.deleted {
|
128
|
-
color: red;
|
129
|
-
}
|
@@ -1,130 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* prism.js Funky theme
|
3
|
-
* Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
|
4
|
-
* @author Lea Verou
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
10
|
-
font-size: 1em;
|
11
|
-
text-align: left;
|
12
|
-
white-space: pre;
|
13
|
-
word-spacing: normal;
|
14
|
-
word-break: normal;
|
15
|
-
word-wrap: normal;
|
16
|
-
line-height: 1.5;
|
17
|
-
|
18
|
-
-moz-tab-size: 4;
|
19
|
-
-o-tab-size: 4;
|
20
|
-
tab-size: 4;
|
21
|
-
|
22
|
-
-webkit-hyphens: none;
|
23
|
-
-moz-hyphens: none;
|
24
|
-
-ms-hyphens: none;
|
25
|
-
hyphens: none;
|
26
|
-
}
|
27
|
-
|
28
|
-
/* Code blocks */
|
29
|
-
pre[class*="language-"] {
|
30
|
-
padding: .4em .8em;
|
31
|
-
margin: .5em 0;
|
32
|
-
overflow: auto;
|
33
|
-
background: url('data:image/svg+xml;charset=utf-8,<svg%20version%3D"1.1"%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"100"%20height%3D"100"%20fill%3D"rgba(0%2C0%2C0%2C.2)">%0D%0A<polygon%20points%3D"0%2C50%2050%2C0%200%2C0"%20%2F>%0D%0A<polygon%20points%3D"0%2C100%2050%2C100%20100%2C50%20100%2C0"%20%2F>%0D%0A<%2Fsvg>');
|
34
|
-
background-size: 1em 1em;
|
35
|
-
}
|
36
|
-
|
37
|
-
code[class*="language-"] {
|
38
|
-
background: black;
|
39
|
-
color: white;
|
40
|
-
box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black;
|
41
|
-
}
|
42
|
-
|
43
|
-
/* Inline code */
|
44
|
-
:not(pre) > code[class*="language-"] {
|
45
|
-
padding: .2em;
|
46
|
-
border-radius: .3em;
|
47
|
-
box-shadow: none;
|
48
|
-
white-space: normal;
|
49
|
-
}
|
50
|
-
|
51
|
-
.token.comment,
|
52
|
-
.token.prolog,
|
53
|
-
.token.doctype,
|
54
|
-
.token.cdata {
|
55
|
-
color: #aaa;
|
56
|
-
}
|
57
|
-
|
58
|
-
.token.punctuation {
|
59
|
-
color: #999;
|
60
|
-
}
|
61
|
-
|
62
|
-
.token.namespace {
|
63
|
-
opacity: .7;
|
64
|
-
}
|
65
|
-
|
66
|
-
.token.property,
|
67
|
-
.token.tag,
|
68
|
-
.token.boolean,
|
69
|
-
.token.number,
|
70
|
-
.token.constant,
|
71
|
-
.token.symbol {
|
72
|
-
color: #0cf;
|
73
|
-
}
|
74
|
-
|
75
|
-
.token.selector,
|
76
|
-
.token.attr-name,
|
77
|
-
.token.string,
|
78
|
-
.token.char,
|
79
|
-
.token.builtin {
|
80
|
-
color: yellow;
|
81
|
-
}
|
82
|
-
|
83
|
-
.token.operator,
|
84
|
-
.token.entity,
|
85
|
-
.token.url,
|
86
|
-
.language-css .token.string,
|
87
|
-
.token.variable,
|
88
|
-
.token.inserted {
|
89
|
-
color: yellowgreen;
|
90
|
-
}
|
91
|
-
|
92
|
-
.token.atrule,
|
93
|
-
.token.attr-value,
|
94
|
-
.token.keyword {
|
95
|
-
color: deeppink;
|
96
|
-
}
|
97
|
-
|
98
|
-
.token.regex,
|
99
|
-
.token.important {
|
100
|
-
color: orange;
|
101
|
-
}
|
102
|
-
|
103
|
-
.token.important,
|
104
|
-
.token.bold {
|
105
|
-
font-weight: bold;
|
106
|
-
}
|
107
|
-
.token.italic {
|
108
|
-
font-style: italic;
|
109
|
-
}
|
110
|
-
|
111
|
-
.token.entity {
|
112
|
-
cursor: help;
|
113
|
-
}
|
114
|
-
|
115
|
-
.token.deleted {
|
116
|
-
color: red;
|
117
|
-
}
|
118
|
-
|
119
|
-
/* Plugin styles: Diff Highlight */
|
120
|
-
pre.diff-highlight.diff-highlight > code .token.deleted:not(.prefix),
|
121
|
-
pre > code.diff-highlight.diff-highlight .token.deleted:not(.prefix) {
|
122
|
-
background-color: rgba(255, 0, 0, .3);
|
123
|
-
display: inline;
|
124
|
-
}
|
125
|
-
|
126
|
-
pre.diff-highlight.diff-highlight > code .token.inserted:not(.prefix),
|
127
|
-
pre > code.diff-highlight.diff-highlight .token.inserted:not(.prefix) {
|
128
|
-
background-color: rgba(0, 255, 128, .3);
|
129
|
-
display: inline;
|
130
|
-
}
|
@@ -1,123 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* okaidia theme for JavaScript, CSS and HTML
|
3
|
-
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
|
4
|
-
* @author ocodia
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
color: #f8f8f2;
|
10
|
-
background: none;
|
11
|
-
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
12
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
13
|
-
font-size: 1em;
|
14
|
-
text-align: left;
|
15
|
-
white-space: pre;
|
16
|
-
word-spacing: normal;
|
17
|
-
word-break: normal;
|
18
|
-
word-wrap: normal;
|
19
|
-
line-height: 1.5;
|
20
|
-
|
21
|
-
-moz-tab-size: 4;
|
22
|
-
-o-tab-size: 4;
|
23
|
-
tab-size: 4;
|
24
|
-
|
25
|
-
-webkit-hyphens: none;
|
26
|
-
-moz-hyphens: none;
|
27
|
-
-ms-hyphens: none;
|
28
|
-
hyphens: none;
|
29
|
-
}
|
30
|
-
|
31
|
-
/* Code blocks */
|
32
|
-
pre[class*="language-"] {
|
33
|
-
padding: 1em;
|
34
|
-
margin: .5em 0;
|
35
|
-
overflow: auto;
|
36
|
-
border-radius: 0.3em;
|
37
|
-
}
|
38
|
-
|
39
|
-
:not(pre) > code[class*="language-"],
|
40
|
-
pre[class*="language-"] {
|
41
|
-
background: #272822;
|
42
|
-
}
|
43
|
-
|
44
|
-
/* Inline code */
|
45
|
-
:not(pre) > code[class*="language-"] {
|
46
|
-
padding: .1em;
|
47
|
-
border-radius: .3em;
|
48
|
-
white-space: normal;
|
49
|
-
}
|
50
|
-
|
51
|
-
.token.comment,
|
52
|
-
.token.prolog,
|
53
|
-
.token.doctype,
|
54
|
-
.token.cdata {
|
55
|
-
color: #8292a2;
|
56
|
-
}
|
57
|
-
|
58
|
-
.token.punctuation {
|
59
|
-
color: #f8f8f2;
|
60
|
-
}
|
61
|
-
|
62
|
-
.token.namespace {
|
63
|
-
opacity: .7;
|
64
|
-
}
|
65
|
-
|
66
|
-
.token.property,
|
67
|
-
.token.tag,
|
68
|
-
.token.constant,
|
69
|
-
.token.symbol,
|
70
|
-
.token.deleted {
|
71
|
-
color: #f92672;
|
72
|
-
}
|
73
|
-
|
74
|
-
.token.boolean,
|
75
|
-
.token.number {
|
76
|
-
color: #ae81ff;
|
77
|
-
}
|
78
|
-
|
79
|
-
.token.selector,
|
80
|
-
.token.attr-name,
|
81
|
-
.token.string,
|
82
|
-
.token.char,
|
83
|
-
.token.builtin,
|
84
|
-
.token.inserted {
|
85
|
-
color: #a6e22e;
|
86
|
-
}
|
87
|
-
|
88
|
-
.token.operator,
|
89
|
-
.token.entity,
|
90
|
-
.token.url,
|
91
|
-
.language-css .token.string,
|
92
|
-
.style .token.string,
|
93
|
-
.token.variable {
|
94
|
-
color: #f8f8f2;
|
95
|
-
}
|
96
|
-
|
97
|
-
.token.atrule,
|
98
|
-
.token.attr-value,
|
99
|
-
.token.function,
|
100
|
-
.token.class-name {
|
101
|
-
color: #e6db74;
|
102
|
-
}
|
103
|
-
|
104
|
-
.token.keyword {
|
105
|
-
color: #66d9ef;
|
106
|
-
}
|
107
|
-
|
108
|
-
.token.regex,
|
109
|
-
.token.important {
|
110
|
-
color: #fd971f;
|
111
|
-
}
|
112
|
-
|
113
|
-
.token.important,
|
114
|
-
.token.bold {
|
115
|
-
font-weight: bold;
|
116
|
-
}
|
117
|
-
.token.italic {
|
118
|
-
font-style: italic;
|
119
|
-
}
|
120
|
-
|
121
|
-
.token.entity {
|
122
|
-
cursor: help;
|
123
|
-
}
|