Simple tool for parsing referenceable comments within Svelte components.
Fork, pillage, and plunder! Do whatever as long as you adhere to the project's permissive MIT license.
Given the component:
<!-- BartSimpson.svelte -->
<script>
//p23.ay_caramba A node with the name (or path) 'ay_caramba'.
/*p23.eat.my.shorts
A block node with multiple path segments.
*/
/*p23.eat.my.shorts
Nodes with the same are presented in order as you'll see.
*/
//p23.js.multiline
// An unbroken
// series of
//
// single line comments.
</script>
<div>
<!--p23.html.line P23 will parse HTML comments too. -->
<slot />
<!--p23.html.block
That includes
multiline block comments.
-->
</div>
When parsed with:
import p23 from 'p23'
const fileDocs = p23()
Then fileDocs
will be something like:
[
{
name: "BartSimpson.svelte",
relPath: "./src/lib/BartSimpson.svelte",
absPath: "/home/esmerelda/github/my-project/src/lib/BartSimpson.svelte",
nodes: {
ay_caramba: ["//p23.ay_caramba A node with the name (path) 'ay_caramba'."],
eat: {
my: {
shorts: [`/*p23.eat.my.shorts
A block node with multiple path segments.
*/`, `/*p23.eat.my.shorts
Nodes with the same are presented in order as you'll see.
*/`]
}
},
js: {
multiline: [`//p23.js.multiline
// An unbroken
// series of
//
// single line comments.`]
},
html: {
line: [`<!--p23.html.line P23 will parse HTML comments too. -->`],
block: [`<!--p23.html.block
That includes
multiline block comments.
-->`],
}
}
}
]
To parse and clean nodes:
import p23, { cleanNodes } from 'p23'
const files = p23()
const fileDocs = cleanNodes(files)
Cleaning removes the P23 delimiter and leading whitespace from lines. Whitespace filtering is opinionated:
*
, tabs, or two sequential spaces are removed if found.[
{
name: "BartSimpson.svelte",
relPath: "./src/lib/BartSimpson.svelte",
absPath: "/home/esmerelda/github/my-project/src/lib/BartSimpson.svelte",
nodes: {
ay_caramba: ["A node with the name (path) 'ay_caramba'."],
eat: {
my: {
shorts: [`
A block node with multiple path segments.
`, `
Nodes with the same are presented in order as you'll see.
`]
}
},
js: {
multiline: [`
An unbroken
series of
single line comments.`]
},
html: {
line: [` P23 will parse HTML comments too. `],
block: [`
That includes
multiline block comments.
`],
}
}
}
]
cleanNodes
or by your own means.^[$@a-zA-Z_][$@a-zA-Z0-9_\-]*$
. This list may be extended in future to include almost any string character.Defaults noted as field values.
For information on glob and glob options see NPM glob package (Github). I should hide this library behind the API, but CBA at least for the first version.
import p23 from 'p23'
p23({
// Custom prefix for nodes.
// You could use "@" to parse "//@name: value" for example.
prefix: "p23.",
// For SvelteKit packaged libraries you would use
// "dist/*.svelte" or some variation of it.
glob: "**/*.svelte",
globOptions: {}
})
I simply wanted to document a component's API within itself and regenerate that documentation in a form I please, particularly within a README. To clarify, I want to document the interface (API) to the component by documenting its single implementation. Ths includes details such as name, description, module & instance properties, slots, set context, and defaults where applicable.
A few documentation tools come close but none completely satisfy my need for simplicity, readability, flexibility, and ability to document all mentioned aspects of the API. Furthermore, existing tools traded-off too much flexibility for conciseness. So I set about creating P24. In the process I was able to separate the concern of parsing annotated comments into P23.
To clarify, P23 is not about documenting components (P24 does that). It is about specifying parsable comments within Svelte components. The output can then be used by a documentation package or some other innovative tooling. For example, you could build a changelog package where maintainers write changes to a component within the component. The package could render them in a similar manner to how P24 does with API documentation.