HTML and CSS lexer aimed at code with fatal errors, accepts mixed coding languages
This package is pure ESM. If you're not ready yet, install an older version of this program, 5.6.0 (npm i codsen-tokenizer@5.6.0
).
npm i codsen-tokenizer
import { strict as assert } from "assert";
import { tokenizer } from "codsen-tokenizer";
const gathered = [];
// it operates from a callback, like Array.prototype.forEach()
tokenizer("<td nowrap>", {
tagCb: (obj) => {
gathered.push(obj);
},
});
assert.deepEqual(gathered, [
{
type: "tag",
start: 0,
end: 11,
value: "<td nowrap>",
tagNameStartsAt: 1,
tagNameEndsAt: 3,
tagName: "td",
recognised: true,
closing: false,
void: false,
pureHTML: true,
kind: null,
attribs: [
{
attribName: "nowrap",
attribNameRecognised: true,
attribNameStartsAt: 4,
attribNameEndsAt: 10,
attribOpeningQuoteAt: null,
attribClosingQuoteAt: null,
attribValueRaw: null,
attribValue: [],
attribValueStartsAt: null,
attribValueEndsAt: null,
attribStarts: 4,
attribEnds: 10,
attribLeft: 2,
},
],
},
]);
Please visit codsen.com for a full description of the API.
To report bugs or request features or assistance, raise an issue on GitHub.
MIT License.
Copyright © 2010-2024 Roy Revelt and other contributors.