react-markdown-table-ts 0.1.7 → 0.1.9
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 -2011
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +8 -1994
- package/dist/index.esm.js.map +1 -1
- package/dist/types.d.ts +6 -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
@@ -1,150 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Solarized Color Schemes originally by Ethan Schoonover
|
3
|
-
http://ethanschoonover.com/solarized
|
4
|
-
|
5
|
-
Ported for PrismJS by Hector Matos
|
6
|
-
Website: https://krakendev.io
|
7
|
-
Twitter Handle: https://twitter.com/allonsykraken)
|
8
|
-
*/
|
9
|
-
|
10
|
-
/*
|
11
|
-
SOLARIZED HEX
|
12
|
-
--------- -------
|
13
|
-
base03 #002b36
|
14
|
-
base02 #073642
|
15
|
-
base01 #586e75
|
16
|
-
base00 #657b83
|
17
|
-
base0 #839496
|
18
|
-
base1 #93a1a1
|
19
|
-
base2 #eee8d5
|
20
|
-
base3 #fdf6e3
|
21
|
-
yellow #b58900
|
22
|
-
orange #cb4b16
|
23
|
-
red #dc322f
|
24
|
-
magenta #d33682
|
25
|
-
violet #6c71c4
|
26
|
-
blue #268bd2
|
27
|
-
cyan #2aa198
|
28
|
-
green #859900
|
29
|
-
*/
|
30
|
-
|
31
|
-
code[class*="language-"],
|
32
|
-
pre[class*="language-"] {
|
33
|
-
color: #657b83; /* base00 */
|
34
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
35
|
-
font-size: 1em;
|
36
|
-
text-align: left;
|
37
|
-
white-space: pre;
|
38
|
-
word-spacing: normal;
|
39
|
-
word-break: normal;
|
40
|
-
word-wrap: normal;
|
41
|
-
|
42
|
-
line-height: 1.5;
|
43
|
-
|
44
|
-
-moz-tab-size: 4;
|
45
|
-
-o-tab-size: 4;
|
46
|
-
tab-size: 4;
|
47
|
-
|
48
|
-
-webkit-hyphens: none;
|
49
|
-
-moz-hyphens: none;
|
50
|
-
-ms-hyphens: none;
|
51
|
-
hyphens: none;
|
52
|
-
}
|
53
|
-
|
54
|
-
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
55
|
-
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
56
|
-
background: #073642; /* base02 */
|
57
|
-
}
|
58
|
-
|
59
|
-
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
60
|
-
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
61
|
-
background: #073642; /* base02 */
|
62
|
-
}
|
63
|
-
|
64
|
-
/* Code blocks */
|
65
|
-
pre[class*="language-"] {
|
66
|
-
padding: 1em;
|
67
|
-
margin: .5em 0;
|
68
|
-
overflow: auto;
|
69
|
-
border-radius: 0.3em;
|
70
|
-
}
|
71
|
-
|
72
|
-
:not(pre) > code[class*="language-"],
|
73
|
-
pre[class*="language-"] {
|
74
|
-
background-color: #fdf6e3; /* base3 */
|
75
|
-
}
|
76
|
-
|
77
|
-
/* Inline code */
|
78
|
-
:not(pre) > code[class*="language-"] {
|
79
|
-
padding: .1em;
|
80
|
-
border-radius: .3em;
|
81
|
-
}
|
82
|
-
|
83
|
-
.token.comment,
|
84
|
-
.token.prolog,
|
85
|
-
.token.doctype,
|
86
|
-
.token.cdata {
|
87
|
-
color: #93a1a1; /* base1 */
|
88
|
-
}
|
89
|
-
|
90
|
-
.token.punctuation {
|
91
|
-
color: #586e75; /* base01 */
|
92
|
-
}
|
93
|
-
|
94
|
-
.token.namespace {
|
95
|
-
opacity: .7;
|
96
|
-
}
|
97
|
-
|
98
|
-
.token.property,
|
99
|
-
.token.tag,
|
100
|
-
.token.boolean,
|
101
|
-
.token.number,
|
102
|
-
.token.constant,
|
103
|
-
.token.symbol,
|
104
|
-
.token.deleted {
|
105
|
-
color: #268bd2; /* blue */
|
106
|
-
}
|
107
|
-
|
108
|
-
.token.selector,
|
109
|
-
.token.attr-name,
|
110
|
-
.token.string,
|
111
|
-
.token.char,
|
112
|
-
.token.builtin,
|
113
|
-
.token.url,
|
114
|
-
.token.inserted {
|
115
|
-
color: #2aa198; /* cyan */
|
116
|
-
}
|
117
|
-
|
118
|
-
.token.entity {
|
119
|
-
color: #657b83; /* base00 */
|
120
|
-
background: #eee8d5; /* base2 */
|
121
|
-
}
|
122
|
-
|
123
|
-
.token.atrule,
|
124
|
-
.token.attr-value,
|
125
|
-
.token.keyword {
|
126
|
-
color: #859900; /* green */
|
127
|
-
}
|
128
|
-
|
129
|
-
.token.function,
|
130
|
-
.token.class-name {
|
131
|
-
color: #b58900; /* yellow */
|
132
|
-
}
|
133
|
-
|
134
|
-
.token.regex,
|
135
|
-
.token.important,
|
136
|
-
.token.variable {
|
137
|
-
color: #cb4b16; /* orange */
|
138
|
-
}
|
139
|
-
|
140
|
-
.token.important,
|
141
|
-
.token.bold {
|
142
|
-
font-weight: bold;
|
143
|
-
}
|
144
|
-
.token.italic {
|
145
|
-
font-style: italic;
|
146
|
-
}
|
147
|
-
|
148
|
-
.token.entity {
|
149
|
-
cursor: help;
|
150
|
-
}
|
@@ -1,122 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
|
3
|
-
* Based on https://github.com/chriskempson/tomorrow-theme
|
4
|
-
* @author Rose Pritchard
|
5
|
-
*/
|
6
|
-
|
7
|
-
code[class*="language-"],
|
8
|
-
pre[class*="language-"] {
|
9
|
-
color: #ccc;
|
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
|
-
|
31
|
-
/* Code blocks */
|
32
|
-
pre[class*="language-"] {
|
33
|
-
padding: 1em;
|
34
|
-
margin: .5em 0;
|
35
|
-
overflow: auto;
|
36
|
-
}
|
37
|
-
|
38
|
-
:not(pre) > code[class*="language-"],
|
39
|
-
pre[class*="language-"] {
|
40
|
-
background: #2d2d2d;
|
41
|
-
}
|
42
|
-
|
43
|
-
/* Inline code */
|
44
|
-
:not(pre) > code[class*="language-"] {
|
45
|
-
padding: .1em;
|
46
|
-
border-radius: .3em;
|
47
|
-
white-space: normal;
|
48
|
-
}
|
49
|
-
|
50
|
-
.token.comment,
|
51
|
-
.token.block-comment,
|
52
|
-
.token.prolog,
|
53
|
-
.token.doctype,
|
54
|
-
.token.cdata {
|
55
|
-
color: #999;
|
56
|
-
}
|
57
|
-
|
58
|
-
.token.punctuation {
|
59
|
-
color: #ccc;
|
60
|
-
}
|
61
|
-
|
62
|
-
.token.tag,
|
63
|
-
.token.attr-name,
|
64
|
-
.token.namespace,
|
65
|
-
.token.deleted {
|
66
|
-
color: #e2777a;
|
67
|
-
}
|
68
|
-
|
69
|
-
.token.function-name {
|
70
|
-
color: #6196cc;
|
71
|
-
}
|
72
|
-
|
73
|
-
.token.boolean,
|
74
|
-
.token.number,
|
75
|
-
.token.function {
|
76
|
-
color: #f08d49;
|
77
|
-
}
|
78
|
-
|
79
|
-
.token.property,
|
80
|
-
.token.class-name,
|
81
|
-
.token.constant,
|
82
|
-
.token.symbol {
|
83
|
-
color: #f8c555;
|
84
|
-
}
|
85
|
-
|
86
|
-
.token.selector,
|
87
|
-
.token.important,
|
88
|
-
.token.atrule,
|
89
|
-
.token.keyword,
|
90
|
-
.token.builtin {
|
91
|
-
color: #cc99cd;
|
92
|
-
}
|
93
|
-
|
94
|
-
.token.string,
|
95
|
-
.token.char,
|
96
|
-
.token.attr-value,
|
97
|
-
.token.regex,
|
98
|
-
.token.variable {
|
99
|
-
color: #7ec699;
|
100
|
-
}
|
101
|
-
|
102
|
-
.token.operator,
|
103
|
-
.token.entity,
|
104
|
-
.token.url {
|
105
|
-
color: #67cdcc;
|
106
|
-
}
|
107
|
-
|
108
|
-
.token.important,
|
109
|
-
.token.bold {
|
110
|
-
font-weight: bold;
|
111
|
-
}
|
112
|
-
.token.italic {
|
113
|
-
font-style: italic;
|
114
|
-
}
|
115
|
-
|
116
|
-
.token.entity {
|
117
|
-
cursor: help;
|
118
|
-
}
|
119
|
-
|
120
|
-
.token.inserted {
|
121
|
-
color: green;
|
122
|
-
}
|
package/styles/themes/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
|
-
}
|