@tamagui/code-to-html 1.135.4 → 1.135.6
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/cjs/highlightLine.native.js +92 -78
- package/dist/cjs/highlightLine.native.js.map +1 -6
- package/dist/cjs/highlightWord.native.js +35 -24
- package/dist/cjs/highlightWord.native.js.map +1 -6
- package/dist/cjs/index.native.js +32 -19
- package/dist/cjs/index.native.js.map +1 -6
- package/package.json +2 -2
|
@@ -1,105 +1,119 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf,
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
8
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
9
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
for (var name in all) __defProp(target, name, {
|
|
11
|
+
get: all[name],
|
|
12
|
+
enumerable: !0
|
|
13
|
+
});
|
|
14
|
+
},
|
|
15
|
+
__copyProps = (to, from, except, desc) => {
|
|
16
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
16
22
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
23
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
24
|
// file that has been converted to a CommonJS file using a Babel-
|
|
19
25
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
26
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
28
|
+
value: mod,
|
|
29
|
+
enumerable: !0
|
|
30
|
+
}) : target, mod)),
|
|
31
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
32
|
+
value: !0
|
|
33
|
+
}), mod);
|
|
24
34
|
var highlightLine_exports = {};
|
|
25
35
|
__export(highlightLine_exports, {
|
|
26
36
|
highlightLine: () => highlightLine
|
|
27
37
|
});
|
|
28
38
|
module.exports = __toCommonJS(highlightLine_exports);
|
|
29
|
-
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
40
|
+
import_rehype_parse = __toESM(require("rehype-parse")),
|
|
41
|
+
import_unified = require("unified"),
|
|
42
|
+
lineNumberify = function lineNumberify2(ast) {
|
|
43
|
+
var lineNum = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 1,
|
|
44
|
+
lineNumber = lineNum;
|
|
45
|
+
return ast.reduce(function (result, node) {
|
|
46
|
+
if (node.type === "text") {
|
|
47
|
+
if (node.value.indexOf(`
|
|
48
|
+
`) === -1) return node.lineNumber = lineNumber, result.nodes.push(node), result;
|
|
49
|
+
for (var lines = node.value.split(`
|
|
50
|
+
`), i = 0; i < lines.length; i++) i !== 0 && ++lineNumber, !(i === lines.length - 1 && lines[i].length === 0) && result.nodes.push({
|
|
39
51
|
type: "text",
|
|
40
52
|
value: i === lines.length - 1 ? lines[i] : `${lines[i]}
|
|
41
53
|
`,
|
|
42
54
|
lineNumber
|
|
43
55
|
});
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
if (node.children) {
|
|
47
|
-
node.lineNumber = lineNumber;
|
|
48
|
-
var processed = lineNumberify2(node.children, lineNumber);
|
|
49
|
-
return node.children = processed.nodes, result.lineNumber = processed.lineNumber, result.nodes.push(node), result;
|
|
50
|
-
}
|
|
51
|
-
return result.nodes.push(node), result;
|
|
52
|
-
}, {
|
|
53
|
-
nodes: [],
|
|
54
|
-
lineNumber
|
|
55
|
-
});
|
|
56
|
-
}, wrapLines = function(ast, linesToHighlight) {
|
|
57
|
-
var highlightAll = linesToHighlight.length === 1 && linesToHighlight[0] === 0, allLines = Array.from(new Set(ast.map(function(x) {
|
|
58
|
-
return x.lineNumber;
|
|
59
|
-
}))), i = 0, wrapped = allLines.reduce(function(nodes, marker) {
|
|
60
|
-
for (var line = marker, children = []; i < ast.length; i++) {
|
|
61
|
-
if (ast[i].lineNumber < line) {
|
|
62
|
-
nodes.push(ast[i]);
|
|
63
|
-
continue;
|
|
56
|
+
return result.lineNumber = lineNumber, result;
|
|
64
57
|
}
|
|
65
|
-
if (
|
|
66
|
-
|
|
67
|
-
|
|
58
|
+
if (node.children) {
|
|
59
|
+
node.lineNumber = lineNumber;
|
|
60
|
+
var processed = lineNumberify2(node.children, lineNumber);
|
|
61
|
+
return node.children = processed.nodes, result.lineNumber = processed.lineNumber, result.nodes.push(node), result;
|
|
68
62
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
},
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
63
|
+
return result.nodes.push(node), result;
|
|
64
|
+
}, {
|
|
65
|
+
nodes: [],
|
|
66
|
+
lineNumber
|
|
67
|
+
});
|
|
68
|
+
},
|
|
69
|
+
wrapLines = function (ast, linesToHighlight) {
|
|
70
|
+
var highlightAll = linesToHighlight.length === 1 && linesToHighlight[0] === 0,
|
|
71
|
+
allLines = Array.from(new Set(ast.map(function (x) {
|
|
72
|
+
return x.lineNumber;
|
|
73
|
+
}))),
|
|
74
|
+
i = 0,
|
|
75
|
+
wrapped = allLines.reduce(function (nodes, marker) {
|
|
76
|
+
for (var line = marker, children = []; i < ast.length; i++) {
|
|
77
|
+
if (ast[i].lineNumber < line) {
|
|
78
|
+
nodes.push(ast[i]);
|
|
79
|
+
continue;
|
|
80
|
+
}
|
|
81
|
+
if (ast[i].lineNumber === line) {
|
|
82
|
+
children.push(ast[i]);
|
|
83
|
+
continue;
|
|
84
|
+
}
|
|
85
|
+
if (ast[i].lineNumber > line) break;
|
|
86
|
+
}
|
|
87
|
+
return nodes.push({
|
|
88
|
+
type: "element",
|
|
89
|
+
tagName: "div",
|
|
90
|
+
properties: {
|
|
91
|
+
dataLine: line,
|
|
92
|
+
className: "highlight-line",
|
|
93
|
+
dataHighlighted: linesToHighlight.includes(line) || highlightAll ? "true" : "false"
|
|
94
|
+
},
|
|
95
|
+
children,
|
|
96
|
+
lineNumber: line
|
|
97
|
+
}), nodes;
|
|
98
|
+
}, []);
|
|
99
|
+
return wrapped;
|
|
100
|
+
},
|
|
101
|
+
MULTILINE_TOKEN_SPAN = /<span class="token ([^"]+)">[^<]*\n[^<]*<\/span>/g,
|
|
102
|
+
applyMultilineFix = function (ast) {
|
|
103
|
+
var html = (0, import_hast_util_to_html.toHtml)(ast);
|
|
104
|
+
html = html.replace(MULTILINE_TOKEN_SPAN, function (match, token) {
|
|
105
|
+
return match.replace(/\n/g, `</span>
|
|
89
106
|
<span class="token ${token}">`);
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
};
|
|
107
|
+
});
|
|
108
|
+
var hast = (0, import_unified.unified)().use(import_rehype_parse.default, {
|
|
109
|
+
emitParseErrors: !0,
|
|
110
|
+
fragment: !0
|
|
111
|
+
}).parse(html);
|
|
112
|
+
return hast.children;
|
|
113
|
+
};
|
|
97
114
|
function highlightLine(ast, lines) {
|
|
98
|
-
var formattedAst = applyMultilineFix(ast),
|
|
115
|
+
var formattedAst = applyMultilineFix(ast),
|
|
116
|
+
numbered = lineNumberify(formattedAst).nodes;
|
|
99
117
|
return wrapLines(numbered, lines);
|
|
100
118
|
}
|
|
101
|
-
|
|
102
|
-
0 && (module.exports = {
|
|
103
|
-
highlightLine
|
|
104
|
-
});
|
|
105
|
-
//# sourceMappingURL=highlightLine.js.map
|
|
119
|
+
//# sourceMappingURL=highlightLine.native.js.map
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/highlightLine.ts"],
|
|
4
|
-
"mappings": "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",
|
|
5
|
-
"names": ["lineNumberify", "parse"]
|
|
6
|
-
}
|
|
1
|
+
{"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","highlightLine_exports","__export","highlightLine","module","exports","import_hast_util_to_html","require","import_rehype_parse","__toESM","import_unified","lineNumberify","lineNumberify2","ast","lineNum","arguments","length","lineNumber","reduce","result","node","type","indexOf","nodes","push","lines","split","i","children","processed","wrapLines","linesToHighlight","highlightAll","allLines","Array","from","Set","map","x","wrapped","marker","line","tagName","properties","dataLine","className","dataHighlighted","includes","MULTILINE_TOKEN_SPAN","applyMultilineFix","html","toHtml","replace","match","token","hast","unified","use","default","emitParseErrors","fragment","parse"],"sources":["../../src/highlightLine.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;EAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;IAAAC,KAAA;EAAA,IAAAH,GAAA;AAAA,IAAAI,qBAAA;AAAAC,QAAA,CAAAD,qBAAA;EAAAE,aAAA,EAAAA,CAAA,KAAAA;AAAA;AAEAC,MAAA,CAAAC,OAAA,GAAAT,YAAA,CAAAK,qBAAuB;AAIvB,IAAAK,wBAAsB,GAASC,OAAA,oBAAmB;EAAUC,mBAAG,GAAAC,OAAA,CAAAF,OAAA;EAAAG,cAAA,GAAAH,OAAA;EAAAI,aAAA,YAAAC,eAAAC,GAAA;IAC7D,IAAIC,OAAA,GAAAC,SAAa,CAAAC,MAAA,QAAAD,SAAA,iBAAAA,SAAA;MAAAE,UAAA,GAAAH,OAAA;IACjB,OAAOD,GAAA,CAAIK,MAAA,WAAAC,MAAA,EAAAC,IAAA;MACT,IAACA,IAAA,CAAQC,IAAA,KAAS;QAChB,IAAID,IAAA,CAAKpB,KAAA,CAAAsB,OAAS;AAChB,WAAiC,OAAAF,IAAA,CAAAH,UAAA,GAAAA,UAAA,EAAAE,MAAA,CAAAI,KAAA,CAAAC,IAAA,CAAAJ,IAAA,GAAAD,MAAA;QAC/B,SAAAM,KAAA,GAAKL,IAAA,CAAApB,KAAA,CAAA0B,KAAa;AAKpB,IAAAC,CAAA,MAAAA,CAAA,GAAMF,KAAA,CAAAT,MAAa,EAAAW,CAAA,IAAgBA,CAAA,YAAAV,UAAA,IAAAU,CAAA,KAAAF,KAAA,CAAAT,MAAA,QAAAS,KAAA,CAAAE,CAAA,EAAAX,MAAA,WAAAG,MAAA,CAAAI,KAAA,CAAAC,IAAA;UACnCH,IAAA,QAAa;UACPrB,KAAA,EAAM2B,CAAA,KAAKF,KAAA,CAAAT,MACX,OAAAS,KAAM,CAAAE,CAAM,OAAAF,KAAS,CAAAE,CAAK;AACZ;UACVV;QACgD;QAAA,OACtDE,MAAA,CAAAF,UAAA,GAAAA,UAAA,EAAAE,MAAA;MAAA;MAIJ,IAAAC,IAAA,CAAAQ,QAAA,EAAO;QAETR,IAAA,CAAAH,UAAA,GAAAA,UAAA;QAEA,IAAIY,SAAK,GAAAjB,cAAU,CAAAQ,IAAA,CAAAQ,QAAA,EAAAX,UAAA;QACjB,OAAKG,IAAA,CAAAQ,QAAa,GAAAC,SAAA,CAAAN,KAAA,EAAAJ,MAAA,CAAAF,UAAA,GAAAY,SAAA,CAAAZ,UAAA,EAAAE,MAAA,CAAAI,KAAA,CAAAC,IAAA,CAAAJ,IAAA,GAAAD,MAAA;MAClB;MACA,OAAAA,MAAA,CAAAI,KAAK,CAAAC,IAAA,CAAAJ,IAAW,GAAAD,MAAU;IAGnB;MAGTI,KAAA;MAEFN;IAAA,EACA;EAAoC;EACtCa,SAAA,YAAAA,CAAAjB,GAAA,EAAAkB,gBAAA;IACF,IAEMC,YAAY,GAAAD,gBAA+B,CAAAf,MAAA,KAAkB,KAAAe,gBAAA;MAAAE,QAAA,GAAAC,KAAA,CAAAC,IAAA,KAAAC,GAAA,CAAAvB,GAAA,CAAAwB,GAAA,WAAAC,CAAA;QACjE,OAAMA,CAAA,CAAArB,UAAe;MAErB,IAAI;MAAAU,CAAA,GAAI;MAAAY,OAAA,GAAAN,QAAA,CAAAf,MAAA,WAAAK,KAAA,EAAAiB,MAAA;QAoCR,KAnCgB,IAAAC,IAAA,GAASD,MAAQ,EAAAZ,QAAO,OAAAD,CAAW,GAAAd,GAAA,CAAAG,MAAA,EAAAW,CAAA;UACjD,IAAMd,GAAA,CAAAc,CAAA,EAAOV,UACP,GAAAwB,IAAA,EAAkB;YACxBlB,KAAO,CAAAC,IAAI,CAAIX,GAAA,CAAAc,CAAA;YACb;UACE;UACA,IAAAd,GAAA,CAAAc,CAAA,EAAAV,UAAA,KAAAwB,IAAA;YACFb,QAAA,CAAAJ,IAAA,CAAAX,GAAA,CAAAc,CAAA;YAEA;UACE;UACA,IAAAd,GAAA,CAAAc,CAAA,EAAAV,UAAA,GAAAwB,IAAA,EACF;QAEA;QACE,OAAAlB,KAAA,CAAAC,IAAA;UAEJH,IAAA;UAEAqB,OAAA,OAAM;UACJC,UAAM;YACNC,QAAS,EAAAH,IAAA;YACTI,SAAA,EAAY;YACVC,eAAU,EAAAf,gBAAA,CAAAgB,QAAA,CAAAN,IAAA,KAAAT,YAAA;UAAA;UACCJ,QACX;UAEFX,UAAA,EAAAwB;QAAA,EACA,EAAAlB,KAAA;MAAA,KACA;IAAY,OAGPgB,OAAA;EAAA;EACTS,oBAAK;EAAAC,iBAAA,YAAAA,CAAApC,GAAA;IAGP,IAGMqC,IAAA,OAAA5C,wBAAuB,CAAA6C,MAAA,EAAAtC,GAAA;IAI3BqC,IAAI,GAAAA,IAAA,CAAAE,OAAO,CAAAJ,oBAAA,YAAUK,KAAA,EAAAC,KAAA;MAGrB,OAAAD,KAAO,CAAAD,OAAK;AAAA,qBAAQE,KAAA;IAAA,EAAsB;IACnB,IAAAC,IAAA,OAAA7C,cAAwC,CAAA8C,OAAA,IAAAC,GAAA,CAAAjD,mBAAA,CAAAkD,OAAA;MAC/DC,eAGa;MAGfC,QAAA;IAEO,GAAAC,KAAS,CAAAX,IAAA;IACd,OAAMK,IAAA,CAAA3B,QAAA;EAEN;AACF,SAAAzB,cAAAU,GAAA,EAAAY,KAAA","ignoreList":[]}
|
|
@@ -1,43 +1,54 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf,
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
8
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
9
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
for (var name in all) __defProp(target, name, {
|
|
11
|
+
get: all[name],
|
|
12
|
+
enumerable: !0
|
|
13
|
+
});
|
|
14
|
+
},
|
|
15
|
+
__copyProps = (to, from, except, desc) => {
|
|
16
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
16
22
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
23
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
24
|
// file that has been converted to a CommonJS file using a Babel-
|
|
19
25
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
26
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
28
|
+
value: mod,
|
|
29
|
+
enumerable: !0
|
|
30
|
+
}) : target, mod)),
|
|
31
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
32
|
+
value: !0
|
|
33
|
+
}), mod);
|
|
24
34
|
var highlightWord_exports = {};
|
|
25
35
|
__export(highlightWord_exports, {
|
|
26
36
|
highlightWord: () => highlightWord
|
|
27
37
|
});
|
|
28
38
|
module.exports = __toCommonJS(highlightWord_exports);
|
|
29
|
-
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
39
|
+
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
40
|
+
import_rehype_parse = __toESM(require("rehype-parse")),
|
|
41
|
+
import_unified = require("unified"),
|
|
42
|
+
CALLOUT = /__(.*?)__/g;
|
|
30
43
|
function highlightWord(code) {
|
|
31
|
-
var html = (0, import_hast_util_to_html.toHtml)(code),
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
44
|
+
var html = (0, import_hast_util_to_html.toHtml)(code),
|
|
45
|
+
result = html.replace(CALLOUT, function (_, text) {
|
|
46
|
+
return `<span class="highlight-word">${text}</span>`;
|
|
47
|
+
}),
|
|
48
|
+
hast = (0, import_unified.unified)().use(import_rehype_parse.default, {
|
|
49
|
+
emitParseErrors: !0,
|
|
50
|
+
fragment: !0
|
|
51
|
+
}).parse(result);
|
|
37
52
|
return hast.children;
|
|
38
53
|
}
|
|
39
|
-
|
|
40
|
-
0 && (module.exports = {
|
|
41
|
-
highlightWord
|
|
42
|
-
});
|
|
43
|
-
//# sourceMappingURL=highlightWord.js.map
|
|
54
|
+
//# sourceMappingURL=highlightWord.native.js.map
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/highlightWord.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,+BAAuB,8BACvB,sBAAkB,kCAClB,iBAAwB,oBACpB,UAAU;AACP,SAAS,cAAc,MAAM;AAChC,MAAI,WAAO,iCAAO,IAAI,GAClB,SAAS,KAAK,QAAQ,SAAS,SAAS,GAAG,MAAM;AACjD,WAAO,gCAAgC,IAAI;AAAA,EAC/C,CAAC,GACG,WAAO,wBAAQ,EAAE,IAAI,oBAAAA,SAAO;AAAA,IAC5B,iBAAiB;AAAA,IACjB,UAAU;AAAA,EACd,CAAC,EAAE,MAAM,MAAM;AACf,SAAO,KAAK;AAChB;",
|
|
5
|
-
"names": ["parse"]
|
|
6
|
-
}
|
|
1
|
+
{"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","highlightWord_exports","__export","highlightWord","module","exports","import_hast_util_to_html","require","import_rehype_parse","__toESM","import_unified","CALLOUT","code","html","toHtml","result","replace","_","text","hast","unified","use","default","emitParseErrors","fragment","parse"],"sources":["../../src/highlightWord.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;EAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;IAAAC,KAAA;EAAA,IAAAH,GAAA;AAAA,IAAAI,qBAAA;AAAAC,QAAA,CAAAD,qBAAA;EAAAE,aAAA,EAAAA,CAAA,KAAAA;AAAA;AACAC,MAAA,CAAAC,OAAA,GAAAT,YAAA,CAAAK,qBAAuB;AAIvB,IAAAK,wBAAgB,GAAAC,OAAA;EAAAC,mBAAA,GAAAC,OAAA,CAAAF,OAAA;EAAAG,cAAA,GAAAH,OAAA;EAAAI,OAAA;AAET,SAASR,cAAcS,IAAA,EAAM;EAElC,IAAAC,IAAM,OAAAP,wBADO,CAAAQ,MAAA,EAAAF,IAAO;IAAAG,MACA,GAAAF,IAAA,CAAAG,OAAA,CAAAL,OAAA,YAAAM,CAAA,EAAAC,IAAA;MAClB,uCAAAA,IAAA;IAAA,EACA;IAACC,IAAG,OAAST,cAAA,CAAAU,OAAA,IAAAC,GAAA,CAAAb,mBAAoC,CAAAc,OAAA;MACnDC,eAAA;MAIAC,QAAA,EAHa;IAIf,GAAAC,KAAA,CAAAV,MAAA","ignoreList":[]}
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -1,40 +1,53 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf,
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
8
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
9
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
for (var name in all) __defProp(target, name, {
|
|
11
|
+
get: all[name],
|
|
12
|
+
enumerable: !0
|
|
13
|
+
});
|
|
14
|
+
},
|
|
15
|
+
__copyProps = (to, from, except, desc) => {
|
|
16
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
16
22
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
23
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
24
|
// file that has been converted to a CommonJS file using a Babel-
|
|
19
25
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
26
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
28
|
+
value: mod,
|
|
29
|
+
enumerable: !0
|
|
30
|
+
}) : target, mod)),
|
|
31
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
32
|
+
value: !0
|
|
33
|
+
}), mod);
|
|
24
34
|
var index_exports = {};
|
|
25
35
|
__export(index_exports, {
|
|
26
36
|
codeToHTML: () => codeToHTML
|
|
27
37
|
});
|
|
28
38
|
module.exports = __toCommonJS(index_exports);
|
|
29
|
-
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
39
|
+
var import_hast_util_to_html = require("hast-util-to-html"),
|
|
40
|
+
import_parse_numeric_range = __toESM(require("parse-numeric-range")),
|
|
41
|
+
import_refractor = require("refractor"),
|
|
42
|
+
import_css = __toESM(require("refractor/lang/css")),
|
|
43
|
+
import_tsx = __toESM(require("refractor/lang/tsx")),
|
|
44
|
+
import_highlightLine = require("./highlightLine.native.js"),
|
|
45
|
+
import_highlightWord = require("./highlightWord.native.js");
|
|
30
46
|
import_refractor.refractor.register(import_tsx.default);
|
|
31
47
|
import_refractor.refractor.register(import_css.default);
|
|
32
48
|
function codeToHTML(source, language) {
|
|
33
|
-
var line = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "0",
|
|
49
|
+
var line = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "0",
|
|
50
|
+
result = import_refractor.refractor.highlight(source, language);
|
|
34
51
|
return result = (0, import_highlightLine.highlightLine)(result, (0, import_parse_numeric_range.default)(line)), result = (0, import_highlightWord.highlightWord)(result), result = (0, import_hast_util_to_html.toHtml)(result), result;
|
|
35
52
|
}
|
|
36
|
-
|
|
37
|
-
0 && (module.exports = {
|
|
38
|
-
codeToHTML
|
|
39
|
-
});
|
|
40
|
-
//# sourceMappingURL=index.js.map
|
|
53
|
+
//# sourceMappingURL=index.native.js.map
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+BAAuB,8BACvB,6BAAwB,yCACxB,mBAA0B,sBAC1B,aAAgB,wCAChB,aAAgB,wCAChB,uBAA8B,4BAC9B,uBAA8B;AAC9B,2BAAU,SAAS,WAAAA,OAAG;AACtB,2BAAU,SAAS,WAAAC,OAAG;AACf,SAAS,WAAW,QAAQ,UAAU;AACzC,MAAI,OAAO,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAS,UAAU,CAAC,IAAI,KACxE,SAAS,2BAAU,UAAU,QAAQ,QAAQ;AACjD,sBAAS,oCAAc,YAAQ,2BAAAC,SAAY,IAAI,CAAC,GAChD,aAAS,oCAAc,MAAM,GAC7B,aAAS,iCAAO,MAAM,GACf;AACX;",
|
|
5
|
-
"names": ["tsx", "css", "rangeParser"]
|
|
6
|
-
}
|
|
1
|
+
{"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","codeToHTML","module","exports","import_hast_util_to_html","require","import_parse_numeric_range","__toESM","import_refractor","import_css","import_tsx","import_highlightLine","import_highlightWord","refractor","register","default","source","language","line","arguments","length","result","highlight","highlightLine","highlightWord","toHtml"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;EAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;IAAAC,KAAA;EAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,QAAA,CAAAD,aAAA;EAAAE,UAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAT,YAAA,CAAAK,aAAuB;AASvB,IAAAK,wBAAU,GAAAC,OAAS,oBAAG;EAAAC,0BAAA,GAAAC,OAAA,CAAAF,OAAA;EAAAG,gBAAA,GAAAH,OAAA;EAAAI,UAAA,GAAAF,OAAA,CAAAF,OAAA;EAAAK,UAAA,GAAAH,OAAA,CAAAF,OAAA;EAAAM,oBAAA,GAAAN,OAAA;EAAAO,oBAAA,GAAAP,OAAA;AACtBG,gBAAA,CAAAK,SAAA,CAAUC,QAAA,CAASJ,UAAA,CAAAK,OAAG;AAEfP,gBAAS,CAAAK,SAAW,CAAAC,QAAgB,CAAAL,UAAyC,CAAAM,OAAK;AACvF,SAAId,UAAcA,CAAAe,MAAA,EAAAC,QAAA;EAClB,IAAAC,IAAA,GAAAC,SAAS,CAAAC,MAAA,QAAAD,SAAA,aAAc,IAAAA,SAAQ;IAAAE,MAAA,GAAAb,gBAAY,CAAAK,SAC3C,CAAAS,SAAS,CAAAN,MAAA,EAAAC,QAAA;EAGX,OAAAI,MAAA,OAAAV,oBAAA,CAAAY,aAAA,EAAAF,MAAA,MAAAf,0BAAA,CAAAS,OAAA,EAAAG,IAAA,IAAAG,MAAA,OAAAT,oBAAA,CAAAY,aAAA,EAAAH,MAAA,GAAAA,MAAA,OAAAjB,wBAAA,CAAAqB,MAAA,EAAAJ,MAAA,GAAAA,MAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/code-to-html",
|
|
3
|
-
"version": "1.135.
|
|
3
|
+
"version": "1.135.6",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"url": "^0.11.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@tamagui/build": "1.135.
|
|
33
|
+
"@tamagui/build": "1.135.6"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|