Convert the Editorial theme from a Go+templ wasm plugin to a fully codeless .bnp: 7 blocks + 4 built-in overrides + email wrapper transcribed templ→pongo2 .ninjatpl (byte-faithful, parity-verified 55/55 identical), 4 page templates, blocks/blocks.yaml (fully-qualified editorial:<key>), master_pages.json, and manifest.yaml (system/page templates, template_overrides, email_wrapper, css input_css_append). Schemas moved schemas/→blocks/. All Go, templ, go.mod/go.sum deleted. plugin.mod bumped 0.1.2→0.2.0, [compatibility] dropped. Makefile rewritten to codeless targets. Gates: ninja plugin build → (codeless, no plugin.wasm); ninja plugin verify → OK; check-safety → OK. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
33 lines
952 B
JSON
33 lines
952 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Marginalia",
|
|
"description": "Right-rail italic notes anchored to in-body markers; collapses to inline asides at narrow viewports.",
|
|
"type": "object",
|
|
"properties": {
|
|
"items": {
|
|
"type": "array",
|
|
"title": "Marginalia Notes",
|
|
"description": "List of italic notes for the right rail.",
|
|
"default": [],
|
|
"x-editor": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"note": {
|
|
"type": "string",
|
|
"title": "Note",
|
|
"description": "Note body text. Rich text is permitted.",
|
|
"x-editor": "richtext"
|
|
},
|
|
"anchor": {
|
|
"type": "string",
|
|
"title": "Anchor Label",
|
|
"description": "Optional anchor label (e.g. paragraph marker) the note attaches to.",
|
|
"x-editor": "text"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|