@janga/norna 0.7.18 → 0.7.23
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/README.md +22 -12
- package/astro.config.mjs +25 -0
- package/bin/norna-cli.mjs +8 -2
- package/package.json +60 -13
- package/schemas/category.schema.json +20 -0
- package/schemas/config.schema.json +22 -14
- package/schemas/content-frontmatter.schema.json +25 -5
- package/schemas/manifest.json +2 -1
- package/schemas/page-theme.schema.json +58 -30
- package/schemas/sitewide-content.schema.json +20 -19
- package/schemas/theme.schema.json +542 -243
- package/scripts/add-site-node.mjs +251 -0
- package/scripts/check-config.mjs +32 -4
- package/scripts/deploy-site.mjs +5 -9
- package/scripts/dev-local.mjs +175 -112
- package/scripts/generate-images.mjs +11 -15
- package/scripts/generate-schemas.mjs +4 -1
- package/scripts/init-site.mjs +35 -0
- package/scripts/lib/astro-command.mjs +14 -9
- package/scripts/lib/content-sync-apply.mjs +34 -0
- package/scripts/lib/content-sync-plan.mjs +179 -0
- package/scripts/lib/editor-language-service.mjs +156 -177
- package/scripts/lib/heading-ids.mjs +4 -2
- package/scripts/lib/image-presentation.mjs +2 -0
- package/scripts/lib/markdown-links.mjs +182 -0
- package/scripts/lib/navigation-model.mjs +36 -19
- package/scripts/lib/norna-markdown-blocks.mjs +65 -145
- package/scripts/lib/norna-markdown-render-plugin.mjs +37 -0
- package/scripts/lib/object.mjs +28 -0
- package/scripts/lib/page-aliases.mjs +164 -0
- package/scripts/lib/page-markdown.mjs +332 -0
- package/scripts/lib/presentation-contract.mjs +266 -0
- package/scripts/lib/presentation-palette-metadata.mjs +51 -0
- package/scripts/lib/presentation.mjs +508 -79
- package/scripts/lib/project-config.mjs +78 -10
- package/scripts/lib/schema-definitions.mjs +67 -16
- package/scripts/lib/schema-editor-metadata.mjs +126 -24
- package/scripts/lib/schema-value-definitions.mjs +30 -12
- package/scripts/lib/site-content.mjs +46 -239
- package/scripts/lib/site-link-graph.mjs +326 -0
- package/scripts/lib/site-page-urls.mjs +10 -0
- package/scripts/lib/site-paths.mjs +2 -3
- package/scripts/lib/site-structure.mjs +189 -0
- package/scripts/lib/sitemap.mjs +34 -0
- package/scripts/lib/theme-presets.mjs +118 -119
- package/scripts/lib/theme-profiles.mjs +223 -0
- package/scripts/lib/typography.mjs +220 -35
- package/scripts/lib/yaml-config.mjs +50 -6
- package/scripts/lib/yaml-indentation.mjs +86 -0
- package/scripts/show-typography.mjs +2 -3
- package/scripts/sync-content-sections.mjs +158 -244
- package/scripts/sync-site-public.mjs +23 -2
- package/src/components/CodeBlockCopyScript.astro +92 -0
- package/src/components/DisplaySettings.astro +107 -0
- package/src/components/ImageCarousel.astro +38 -13
- package/src/components/NavigationPageTree.astro +103 -88
- package/src/components/PageAliasRedirect.astro +49 -0
- package/src/components/PageContentsNavigation.astro +21 -0
- package/src/components/SectionNavigationScript.astro +112 -2
- package/src/components/SiteBreadcrumbs.astro +15 -12
- package/src/components/SiteNavigation.astro +104 -41
- package/src/components/SitePage.astro +76 -40
- package/src/components/SiteSection.astro +40 -191
- package/src/components/SiteTreeNavigation.astro +10 -10
- package/src/content.config.ts +5 -2
- package/src/layouts/BaseLayout.astro +55 -9
- package/src/lib/generatedImages.ts +0 -7
- package/src/lib/readerPreferencesScript.mjs +141 -0
- package/src/lib/sectionContent.ts +119 -201
- package/src/lib/siteNavigation.ts +36 -18
- package/src/lib/sitePages.ts +92 -20
- package/src/pages/[...slug].astro +35 -8
- package/src/styles/content.css +494 -0
- package/src/styles/foundations.css +284 -0
- package/src/styles/global.css +6 -2047
- package/src/styles/media.css +523 -0
- package/src/styles/navigation.css +495 -0
- package/src/styles/page-layout.css +437 -0
- package/src/styles/responsive.css +525 -0
- package/starters/basic/README.md +3 -3
- package/docs/README.md +0 -137
- package/docs/assets/norna-dog-shelter.jpg +0 -0
- package/docs/commands.md +0 -189
- package/docs/configuration.md +0 -142
- package/docs/content.md +0 -351
- package/docs/design/command-organization.md +0 -414
- package/docs/design/navigation-and-theme-plan.md +0 -186
- package/docs/design/norna-diagram-design.md +0 -159
- package/docs/design/site-examples-structure.md +0 -119
- package/docs/engine-development.md +0 -215
- package/docs/getting-started.md +0 -206
- package/docs/how-to/embedded-site.md +0 -35
- package/docs/images-and-metadata.md +0 -188
- package/docs/local-development.md +0 -82
- package/docs/pages.md +0 -190
- package/docs/public-files.md +0 -118
- package/docs/publishing.md +0 -117
- package/docs/requirements.md +0 -54
- package/docs/site-files.md +0 -152
- package/docs/sitewide-content.md +0 -73
- package/docs/theme.md +0 -237
- package/docs/typography.md +0 -168
- package/examples/README.md +0 -49
- package/examples/complete-sites/dog-shelter-multi-page/.astro/collections/site.schema.json +0 -35
- package/examples/complete-sites/dog-shelter-multi-page/.astro/collections/sitewide.schema.json +0 -97
- package/examples/complete-sites/dog-shelter-multi-page/.astro/collections/theme.schema.json +0 -852
- package/examples/complete-sites/dog-shelter-multi-page/.astro/content-assets.mjs +0 -4
- package/examples/complete-sites/dog-shelter-multi-page/.astro/content-modules.mjs +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/.astro/content.d.ts +0 -183
- package/examples/complete-sites/dog-shelter-multi-page/.astro/data-store.json +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/.astro/dev-local.json +0 -8
- package/examples/complete-sites/dog-shelter-multi-page/.astro/dev.json +0 -13
- package/examples/complete-sites/dog-shelter-multi-page/.astro/dev.log +0 -36
- package/examples/complete-sites/dog-shelter-multi-page/.astro/settings.json +0 -5
- package/examples/complete-sites/dog-shelter-multi-page/.astro/types.d.ts +0 -2
- package/examples/complete-sites/dog-shelter-multi-page/README.md +0 -24
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/_metadata.json +0 -74
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro-B3JHJyiv.js +0 -434
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro-B3JHJyiv.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/audit-C3SVr7dT.js +0 -1534
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/audit-C3SVr7dT.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/highlight-BLtvqtzO.js +0 -48
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/highlight-BLtvqtzO.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/icons-C92i61-2.js +0 -42
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/icons-C92i61-2.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/package.json +0 -3
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/settings-v5GgKks_.js +0 -190
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/settings-v5GgKks_.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/toolbar-BFvJVp26.js +0 -458
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/toolbar-BFvJVp26.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/ui-library-Cd35oAvo.js +0 -1016
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/ui-library-Cd35oAvo.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/window-vo3A6TMn.js +0 -32
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/window-vo3A6TMn.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/xray-DwhzGckb.js +0 -111
- package/examples/complete-sites/dog-shelter-multi-page/node_modules/.vite/deps/xray-DwhzGckb.js.map +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/site/.norna/generated-images.json +0 -98
- package/examples/complete-sites/dog-shelter-multi-page/site/config.yaml +0 -1
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/000-home/content.md +0 -23
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/000-home/images/shelter-dog.jpg +0 -0
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/010-dogs/content.md +0 -21
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/010-dogs/images/rex.jpg +0 -0
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/010-dogs/images/rover.jpg +0 -0
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/020-adopt/content.md +0 -22
- package/examples/complete-sites/dog-shelter-multi-page/site/pages/020-adopt/images/adoption-dog.jpg +0 -0
- package/examples/complete-sites/dog-shelter-multi-page/site/public/favicon.svg +0 -10
- package/examples/complete-sites/dog-shelter-multi-page/site/public/logo.svg +0 -9
- package/examples/complete-sites/dog-shelter-multi-page/site/public/robots.txt +0 -2
- package/examples/complete-sites/dog-shelter-multi-page/site/sitewide-content.yaml +0 -4
- package/examples/complete-sites/dog-shelter-multi-page/site/theme.yaml +0 -1
- package/examples/complete-sites/dog-shelter-single-page/.astro/collections/site.schema.json +0 -35
- package/examples/complete-sites/dog-shelter-single-page/.astro/collections/sitewide.schema.json +0 -97
- package/examples/complete-sites/dog-shelter-single-page/.astro/collections/theme.schema.json +0 -852
- package/examples/complete-sites/dog-shelter-single-page/.astro/content-assets.mjs +0 -4
- package/examples/complete-sites/dog-shelter-single-page/.astro/content-modules.mjs +0 -1
- package/examples/complete-sites/dog-shelter-single-page/.astro/content.d.ts +0 -183
- package/examples/complete-sites/dog-shelter-single-page/.astro/data-store.json +0 -1
- package/examples/complete-sites/dog-shelter-single-page/.astro/dev-local.json +0 -8
- package/examples/complete-sites/dog-shelter-single-page/.astro/dev.json +0 -13
- package/examples/complete-sites/dog-shelter-single-page/.astro/dev.log +0 -18
- package/examples/complete-sites/dog-shelter-single-page/.astro/settings.json +0 -5
- package/examples/complete-sites/dog-shelter-single-page/.astro/types.d.ts +0 -2
- package/examples/complete-sites/dog-shelter-single-page/README.md +0 -24
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/_metadata.json +0 -74
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro-B3JHJyiv.js +0 -434
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro-B3JHJyiv.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/audit-C3SVr7dT.js +0 -1534
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/audit-C3SVr7dT.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/highlight-BLtvqtzO.js +0 -48
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/highlight-BLtvqtzO.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/icons-C92i61-2.js +0 -42
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/icons-C92i61-2.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/package.json +0 -3
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/settings-v5GgKks_.js +0 -190
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/settings-v5GgKks_.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/toolbar-BFvJVp26.js +0 -458
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/toolbar-BFvJVp26.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/ui-library-Cd35oAvo.js +0 -1016
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/ui-library-Cd35oAvo.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/window-vo3A6TMn.js +0 -32
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/window-vo3A6TMn.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/xray-DwhzGckb.js +0 -111
- package/examples/complete-sites/dog-shelter-single-page/node_modules/.vite/deps/xray-DwhzGckb.js.map +0 -1
- package/examples/complete-sites/dog-shelter-single-page/site/.norna/generated-images.json +0 -50
- package/examples/complete-sites/dog-shelter-single-page/site/config.yaml +0 -1
- package/examples/complete-sites/dog-shelter-single-page/site/pages/000-home/content.md +0 -37
- package/examples/complete-sites/dog-shelter-single-page/site/pages/000-home/images/foster-dog.jpg +0 -0
- package/examples/complete-sites/dog-shelter-single-page/site/pages/000-home/images/rescue-dog.jpg +0 -0
- package/examples/complete-sites/dog-shelter-single-page/site/public/favicon.svg +0 -10
- package/examples/complete-sites/dog-shelter-single-page/site/public/logo.svg +0 -9
- package/examples/complete-sites/dog-shelter-single-page/site/public/robots.txt +0 -2
- package/examples/complete-sites/dog-shelter-single-page/site/sitewide-content.yaml +0 -4
- package/examples/complete-sites/dog-shelter-single-page/site/theme.yaml +0 -1
- package/examples/feature-demos/media-and-surfaces/.astro/collections/site.schema.json +0 -35
- package/examples/feature-demos/media-and-surfaces/.astro/collections/sitewide.schema.json +0 -97
- package/examples/feature-demos/media-and-surfaces/.astro/collections/theme.schema.json +0 -844
- package/examples/feature-demos/media-and-surfaces/.astro/content-assets.mjs +0 -4
- package/examples/feature-demos/media-and-surfaces/.astro/content-modules.mjs +0 -1
- package/examples/feature-demos/media-and-surfaces/.astro/content.d.ts +0 -183
- package/examples/feature-demos/media-and-surfaces/.astro/data-store.json +0 -1
- package/examples/feature-demos/media-and-surfaces/.astro/dev.log +0 -14
- package/examples/feature-demos/media-and-surfaces/.astro/settings.json +0 -5
- package/examples/feature-demos/media-and-surfaces/.astro/types.d.ts +0 -2
- package/examples/feature-demos/media-and-surfaces/README.md +0 -21
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/_metadata.json +0 -80
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro-B3JHJyiv.js +0 -434
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro-B3JHJyiv.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/audit-C3SVr7dT.js +0 -1534
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/audit-C3SVr7dT.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/embla-carousel.js +0 -1389
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/embla-carousel.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/highlight-BLtvqtzO.js +0 -48
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/highlight-BLtvqtzO.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/icons-C92i61-2.js +0 -42
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/icons-C92i61-2.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/package.json +0 -3
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/settings-v5GgKks_.js +0 -190
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/settings-v5GgKks_.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/toolbar-BFvJVp26.js +0 -458
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/toolbar-BFvJVp26.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/ui-library-Cd35oAvo.js +0 -1016
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/ui-library-Cd35oAvo.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/window-vo3A6TMn.js +0 -32
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/window-vo3A6TMn.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/xray-DwhzGckb.js +0 -111
- package/examples/feature-demos/media-and-surfaces/node_modules/.vite/deps/xray-DwhzGckb.js.map +0 -1
- package/examples/feature-demos/media-and-surfaces/site/.norna/generated-images.json +0 -66
- package/examples/feature-demos/media-and-surfaces/site/config.yaml +0 -1
- package/examples/feature-demos/media-and-surfaces/site/pages/000-home/content.md +0 -15
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/content.md +0 -71
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/card-carousel.svg +0 -11
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/card-stack.svg +0 -9
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/card-surfaces.svg +0 -8
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/carousel-one.svg +0 -8
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/carousel-three.svg +0 -13
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/carousel-two.svg +0 -8
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/stack-one.svg +0 -8
- package/examples/feature-demos/media-and-surfaces/site/pages/010-media/images/stack-two.svg +0 -9
- package/examples/feature-demos/media-and-surfaces/site/pages/020-surfaces/content.md +0 -42
- package/examples/feature-demos/media-and-surfaces/site/pages/020-surfaces/theme.yaml +0 -2
- package/examples/feature-demos/media-and-surfaces/site/public/robots.txt +0 -2
- package/examples/feature-demos/media-and-surfaces/site/sitewide-content.yaml +0 -2
- package/examples/feature-demos/media-and-surfaces/site/theme.yaml +0 -1
- package/examples/feature-demos/sitewide-content/.astro/collections/site.schema.json +0 -59
- package/examples/feature-demos/sitewide-content/.astro/collections/sitewide.schema.json +0 -138
- package/examples/feature-demos/sitewide-content/.astro/collections/theme.schema.json +0 -755
- package/examples/feature-demos/sitewide-content/.astro/content-assets.mjs +0 -1
- package/examples/feature-demos/sitewide-content/.astro/content-modules.mjs +0 -1
- package/examples/feature-demos/sitewide-content/.astro/content.d.ts +0 -183
- package/examples/feature-demos/sitewide-content/.astro/data-store.json +0 -1
- package/examples/feature-demos/sitewide-content/.astro/dev.json +0 -13
- package/examples/feature-demos/sitewide-content/.astro/dev.log +0 -18
- package/examples/feature-demos/sitewide-content/.astro/settings.json +0 -5
- package/examples/feature-demos/sitewide-content/.astro/types.d.ts +0 -2
- package/examples/feature-demos/sitewide-content/README.md +0 -26
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/_metadata.json +0 -74
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro-B3JHJyiv.js +0 -434
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro-B3JHJyiv.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/audit-C3SVr7dT.js +0 -1534
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/audit-C3SVr7dT.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/highlight-BLtvqtzO.js +0 -48
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/highlight-BLtvqtzO.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/icons-C92i61-2.js +0 -42
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/icons-C92i61-2.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/package.json +0 -3
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/settings-v5GgKks_.js +0 -190
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/settings-v5GgKks_.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/toolbar-BFvJVp26.js +0 -458
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/toolbar-BFvJVp26.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/ui-library-Cd35oAvo.js +0 -1016
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/ui-library-Cd35oAvo.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/window-vo3A6TMn.js +0 -32
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/window-vo3A6TMn.js.map +0 -1
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/xray-DwhzGckb.js +0 -111
- package/examples/feature-demos/sitewide-content/node_modules/.vite/deps/xray-DwhzGckb.js.map +0 -1
- package/examples/feature-demos/sitewide-content/site/.norna/generated-images.json +0 -1
- package/examples/feature-demos/sitewide-content/site/config.yaml +0 -1
- package/examples/feature-demos/sitewide-content/site/pages/000-home/content.md +0 -17
- package/examples/feature-demos/sitewide-content/site/pages/010-logo-and-navigation/content.md +0 -17
- package/examples/feature-demos/sitewide-content/site/pages/020-notices/content.md +0 -23
- package/examples/feature-demos/sitewide-content/site/pages/030-footer/content.md +0 -18
- package/examples/feature-demos/sitewide-content/site/public/logo.svg +0 -6
- package/examples/feature-demos/sitewide-content/site/public/robots.txt +0 -2
- package/examples/feature-demos/sitewide-content/site/sitewide-content.yaml +0 -14
- package/examples/feature-demos/sitewide-content/site/theme.yaml +0 -1
- package/examples/feature-demos/theme-preset-documentation/README.md +0 -16
- package/examples/feature-demos/theme-preset-documentation/site/.norna/generated-images.json +0 -74
- package/examples/feature-demos/theme-preset-documentation/site/config.yaml +0 -1
- package/examples/feature-demos/theme-preset-documentation/site/pages/000-home/content.md +0 -30
- package/examples/feature-demos/theme-preset-documentation/site/pages/000-home/images/black-schnauzer.jpg +0 -0
- package/examples/feature-demos/theme-preset-documentation/site/pages/000-home/images/retriever-portrait.jpg +0 -0
- package/examples/feature-demos/theme-preset-documentation/site/pages/000-home/images/schnauzer-portrait.jpg +0 -0
- package/examples/feature-demos/theme-preset-documentation/site/public/robots.txt +0 -2
- package/examples/feature-demos/theme-preset-documentation/site/sitewide-content.yaml +0 -3
- package/examples/feature-demos/theme-preset-documentation/site/theme.yaml +0 -1
- package/examples/feature-demos/theme-preset-portfolio/README.md +0 -16
- package/examples/feature-demos/theme-preset-portfolio/site/.norna/generated-images.json +0 -74
- package/examples/feature-demos/theme-preset-portfolio/site/config.yaml +0 -1
- package/examples/feature-demos/theme-preset-portfolio/site/pages/000-home/content.md +0 -31
- package/examples/feature-demos/theme-preset-portfolio/site/pages/000-home/images/puppy-portrait.jpg +0 -0
- package/examples/feature-demos/theme-preset-portfolio/site/pages/000-home/images/shepherd-portrait.jpg +0 -0
- package/examples/feature-demos/theme-preset-portfolio/site/pages/000-home/images/white-puppy.jpg +0 -0
- package/examples/feature-demos/theme-preset-portfolio/site/public/robots.txt +0 -2
- package/examples/feature-demos/theme-preset-portfolio/site/sitewide-content.yaml +0 -3
- package/examples/feature-demos/theme-preset-portfolio/site/theme.yaml +0 -1
- package/examples/feature-demos/theme-preset-project/.astro/collections/routeTheme.schema.json +0 -746
- package/examples/feature-demos/theme-preset-project/.astro/collections/site.schema.json +0 -59
- package/examples/feature-demos/theme-preset-project/.astro/collections/sitewide.schema.json +0 -138
- package/examples/feature-demos/theme-preset-project/.astro/collections/theme.schema.json +0 -755
- package/examples/feature-demos/theme-preset-project/.astro/content-assets.mjs +0 -4
- package/examples/feature-demos/theme-preset-project/.astro/content-modules.mjs +0 -1
- package/examples/feature-demos/theme-preset-project/.astro/content.d.ts +0 -183
- package/examples/feature-demos/theme-preset-project/.astro/data-store.json +0 -1
- package/examples/feature-demos/theme-preset-project/.astro/dev-local.json +0 -8
- package/examples/feature-demos/theme-preset-project/.astro/dev.json +0 -15
- package/examples/feature-demos/theme-preset-project/.astro/dev.log +0 -164
- package/examples/feature-demos/theme-preset-project/.astro/settings.json +0 -5
- package/examples/feature-demos/theme-preset-project/.astro/types.d.ts +0 -2
- package/examples/feature-demos/theme-preset-project/README.md +0 -16
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/_metadata.json +0 -80
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro-D_GIpJIE.js +0 -434
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro-D_GIpJIE.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/audit-DM9Hkl5B.js +0 -1534
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/audit-DM9Hkl5B.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/embla-carousel.js +0 -1389
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/embla-carousel.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/highlight-DnZ1ULOL.js +0 -48
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/highlight-DnZ1ULOL.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/icons-RyebKi45.js +0 -42
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/icons-RyebKi45.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/package.json +0 -3
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/settings-DaU-gNnK.js +0 -190
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/settings-DaU-gNnK.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/toolbar-63PA619H.js +0 -458
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/toolbar-63PA619H.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/ui-library--bkcNSYz.js +0 -1016
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/ui-library--bkcNSYz.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/window-jPkpKVcy.js +0 -32
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/window-jPkpKVcy.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/xray-BXCHpEJP.js +0 -111
- package/examples/feature-demos/theme-preset-project/node_modules/.vite/deps/xray-BXCHpEJP.js.map +0 -1
- package/examples/feature-demos/theme-preset-project/site/.norna/generated-images.json +0 -74
- package/examples/feature-demos/theme-preset-project/site/config.yaml +0 -1
- package/examples/feature-demos/theme-preset-project/site/pages/000-home/content.md +0 -31
- package/examples/feature-demos/theme-preset-project/site/pages/000-home/images/boxer-portrait.jpg +0 -0
- package/examples/feature-demos/theme-preset-project/site/pages/000-home/images/grass-puppy.jpg +0 -0
- package/examples/feature-demos/theme-preset-project/site/pages/000-home/images/grey-street-dog.jpg +0 -0
- package/examples/feature-demos/theme-preset-project/site/public/robots.txt +0 -2
- package/examples/feature-demos/theme-preset-project/site/sitewide-content.yaml +0 -3
- package/examples/feature-demos/theme-preset-project/site/theme.yaml +0 -1
- package/examples/feature-demos/theme-preset-statement/README.md +0 -16
- package/examples/feature-demos/theme-preset-statement/site/.norna/generated-images.json +0 -74
- package/examples/feature-demos/theme-preset-statement/site/config.yaml +0 -1
- package/examples/feature-demos/theme-preset-statement/site/pages/000-home/content.md +0 -31
- package/examples/feature-demos/theme-preset-statement/site/pages/000-home/images/black-pedigree.jpg +0 -0
- package/examples/feature-demos/theme-preset-statement/site/pages/000-home/images/sheepdog-grass.jpg +0 -0
- package/examples/feature-demos/theme-preset-statement/site/pages/000-home/images/sheepdog-wide.jpg +0 -0
- package/examples/feature-demos/theme-preset-statement/site/public/robots.txt +0 -2
- package/examples/feature-demos/theme-preset-statement/site/sitewide-content.yaml +0 -3
- package/examples/feature-demos/theme-preset-statement/site/theme.yaml +0 -1
- package/fixtures/basic/site/.norna/generated-images.json +0 -1
- package/fixtures/basic/site/config.yaml +0 -1
- package/fixtures/basic/site/pages/000-home/content.md +0 -14
- package/fixtures/basic/site/pages/000-home/images/.gitkeep +0 -1
- package/fixtures/basic/site/public/robots.txt +0 -2
- package/fixtures/basic/site/sitewide-content.yaml +0 -3
- package/fixtures/basic/site/theme.yaml +0 -1
- package/fixtures/content-model-v2/.astro/collections/site.schema.json +0 -776
- package/fixtures/content-model-v2/.astro/collections/theme.schema.json +0 -668
- package/fixtures/content-model-v2/.astro/content-assets.mjs +0 -4
- package/fixtures/content-model-v2/.astro/content-modules.mjs +0 -1
- package/fixtures/content-model-v2/.astro/content.d.ts +0 -175
- package/fixtures/content-model-v2/.astro/data-store.json +0 -1
- package/fixtures/content-model-v2/.astro/dev-local.json +0 -8
- package/fixtures/content-model-v2/.astro/dev.json +0 -13
- package/fixtures/content-model-v2/.astro/dev.log +0 -231
- package/fixtures/content-model-v2/.astro/settings.json +0 -5
- package/fixtures/content-model-v2/.astro/types.d.ts +0 -2
- package/fixtures/content-model-v2/dist/_astro/GalleryGrid.astro_astro_type_script_index_0_lang.B0kxDyGz.js +0 -1
- package/fixtures/content-model-v2/dist/_astro/SitePage.BbfZub4g.css +0 -1
- package/fixtures/content-model-v2/dist/guide/index.html +0 -3
- package/fixtures/content-model-v2/dist/images/generated/intro/detail-27930b14-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/detail-27930b14-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/detail-27930b14-971.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/duplicate-49c98f6c-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/duplicate-49c98f6c-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/duplicate-49c98f6c-971.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/hero-6d588a83-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/hero-6d588a83-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/intro/hero-6d588a83-971.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/plain/image-3770d763-1080.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/plain/image-3770d763-1440.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/plain/image-3770d763-1600.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/plain/image-3770d763-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/plain/image-3770d763-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/routes/010-guide/images/intro/duplicate-5cf614d2-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/routes/010-guide/images/intro/duplicate-5cf614d2-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/routes/010-guide/images/intro/duplicate-5cf614d2-960.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-one-3770d763-1080.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-one-3770d763-1440.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-one-3770d763-1600.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-one-3770d763-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-one-3770d763-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-three-5bdec65e-1080.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-three-5bdec65e-1440.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-three-5bdec65e-1600.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-three-5bdec65e-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-three-5bdec65e-768.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-two-26c08aee-1080.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-two-26c08aee-1440.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-two-26c08aee-1600.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-two-26c08aee-480.webp +0 -0
- package/fixtures/content-model-v2/dist/images/generated/timed/slide-two-26c08aee-768.webp +0 -0
- package/fixtures/content-model-v2/dist/index.html +0 -8
- package/fixtures/content-model-v2/node_modules/.vite/deps/_metadata.json +0 -80
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro-D_GIpJIE.js +0 -434
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro-D_GIpJIE.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/fixtures/content-model-v2/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/audit-DM9Hkl5B.js +0 -1534
- package/fixtures/content-model-v2/node_modules/.vite/deps/audit-DM9Hkl5B.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/embla-carousel.js +0 -1389
- package/fixtures/content-model-v2/node_modules/.vite/deps/embla-carousel.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/highlight-DnZ1ULOL.js +0 -48
- package/fixtures/content-model-v2/node_modules/.vite/deps/highlight-DnZ1ULOL.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/icons-RyebKi45.js +0 -42
- package/fixtures/content-model-v2/node_modules/.vite/deps/icons-RyebKi45.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/package.json +0 -3
- package/fixtures/content-model-v2/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/fixtures/content-model-v2/node_modules/.vite/deps/settings-DaU-gNnK.js +0 -190
- package/fixtures/content-model-v2/node_modules/.vite/deps/settings-DaU-gNnK.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/toolbar-63PA619H.js +0 -458
- package/fixtures/content-model-v2/node_modules/.vite/deps/toolbar-63PA619H.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/ui-library--bkcNSYz.js +0 -1016
- package/fixtures/content-model-v2/node_modules/.vite/deps/ui-library--bkcNSYz.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/window-jPkpKVcy.js +0 -32
- package/fixtures/content-model-v2/node_modules/.vite/deps/window-jPkpKVcy.js.map +0 -1
- package/fixtures/content-model-v2/node_modules/.vite/deps/xray-BXCHpEJP.js +0 -111
- package/fixtures/content-model-v2/node_modules/.vite/deps/xray-BXCHpEJP.js.map +0 -1
- package/fixtures/content-model-v2/site/.norna/generated-images.json +0 -210
- package/fixtures/content-model-v2/site/config.yaml +0 -1
- package/fixtures/content-model-v2/site/pages/000-home/content.md +0 -79
- package/fixtures/content-model-v2/site/pages/000-home/images/adopt.svg +0 -9
- package/fixtures/content-model-v2/site/pages/000-home/images/detail.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/duplicate.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/foster.svg +0 -12
- package/fixtures/content-model-v2/site/pages/000-home/images/hero.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/image.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/slide-one.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/slide-three.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/000-home/images/slide-two.jpg +0 -0
- package/fixtures/content-model-v2/site/pages/010-guide/content.md +0 -18
- package/fixtures/content-model-v2/site/pages/010-guide/images/duplicate.jpg +0 -0
- package/fixtures/content-model-v2/site/theme.yaml +0 -4
- package/fixtures/nested-pages/.astro/collections/site.schema.json +0 -35
- package/fixtures/nested-pages/.astro/collections/sitewide.schema.json +0 -97
- package/fixtures/nested-pages/.astro/collections/theme.schema.json +0 -844
- package/fixtures/nested-pages/.astro/content-assets.mjs +0 -4
- package/fixtures/nested-pages/.astro/content-modules.mjs +0 -1
- package/fixtures/nested-pages/.astro/content.d.ts +0 -183
- package/fixtures/nested-pages/.astro/data-store.json +0 -1
- package/fixtures/nested-pages/.astro/dev-local.json +0 -8
- package/fixtures/nested-pages/.astro/dev.log +0 -1128
- package/fixtures/nested-pages/.astro/settings.json +0 -5
- package/fixtures/nested-pages/.astro/types.d.ts +0 -2
- package/fixtures/nested-pages/node_modules/.vite/deps/_metadata.json +0 -74
- package/fixtures/nested-pages/node_modules/.vite/deps/astro-D_GIpJIE.js +0 -434
- package/fixtures/nested-pages/node_modules/.vite/deps/astro-D_GIpJIE.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_aria-query.js +0 -6390
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_aria-query.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_axobject-query.js +0 -2702
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_axobject-query.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_html-escaper.js +0 -65
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_n_html-escaper.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js +0 -455
- package/fixtures/nested-pages/node_modules/.vite/deps/astro_runtime_client_dev-toolbar_entrypoint__js.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/audit-DM9Hkl5B.js +0 -1534
- package/fixtures/nested-pages/node_modules/.vite/deps/audit-DM9Hkl5B.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/highlight-DnZ1ULOL.js +0 -48
- package/fixtures/nested-pages/node_modules/.vite/deps/highlight-DnZ1ULOL.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/icons-RyebKi45.js +0 -42
- package/fixtures/nested-pages/node_modules/.vite/deps/icons-RyebKi45.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/package.json +0 -3
- package/fixtures/nested-pages/node_modules/.vite/deps/rolldown-runtime-BvCyGRYZ.js +0 -4
- package/fixtures/nested-pages/node_modules/.vite/deps/settings-DaU-gNnK.js +0 -190
- package/fixtures/nested-pages/node_modules/.vite/deps/settings-DaU-gNnK.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/toolbar-63PA619H.js +0 -458
- package/fixtures/nested-pages/node_modules/.vite/deps/toolbar-63PA619H.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/ui-library--bkcNSYz.js +0 -1016
- package/fixtures/nested-pages/node_modules/.vite/deps/ui-library--bkcNSYz.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/window-jPkpKVcy.js +0 -32
- package/fixtures/nested-pages/node_modules/.vite/deps/window-jPkpKVcy.js.map +0 -1
- package/fixtures/nested-pages/node_modules/.vite/deps/xray-BXCHpEJP.js +0 -111
- package/fixtures/nested-pages/node_modules/.vite/deps/xray-BXCHpEJP.js.map +0 -1
- package/fixtures/nested-pages/site/.norna/generated-images.json +0 -10
- package/fixtures/nested-pages/site/config.yaml +0 -3
- package/fixtures/nested-pages/site/pages/000-home/content.md +0 -15
- package/fixtures/nested-pages/site/pages/010-guides/content.md +0 -15
- package/fixtures/nested-pages/site/pages/010-guides/pages/010-installation/content.md +0 -21
- package/fixtures/nested-pages/site/pages/010-guides/pages/010-installation/images/diagram.svg +0 -21
- package/fixtures/nested-pages/site/pages/010-guides/pages/010-installation/pages/010-macos/content.md +0 -18
- package/fixtures/nested-pages/site/pages/010-guides/pages/010-installation/theme.yaml +0 -2
- package/fixtures/nested-pages/site/pages/010-guides/pages/020-workflows/content.md +0 -11
- package/fixtures/nested-pages/site/pages/010-guides/pages/030-release-notes/content.md +0 -9
- package/fixtures/nested-pages/site/pages/010-guides/pages/040-configuration/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/050-content/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/060-themes/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/070-images/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/080-cards/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/090-notes/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/100-validation/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/110-synchronization/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/120-building/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/130-publishing/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/140-troubleshooting/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/150-migration/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/160-accessibility/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/170-performance/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/180-security/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/190-localization/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/200-upgrading/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/pages/210-faq/content.md +0 -3
- package/fixtures/nested-pages/site/pages/010-guides/theme.yaml +0 -7
- package/fixtures/nested-pages/site/pages/020-reference/content.md +0 -10
- package/fixtures/nested-pages/site/pages/020-reference/pages/010-installation/content.md +0 -11
- package/fixtures/nested-pages/site/theme.yaml +0 -1
- package/scripts/build-pages.mjs +0 -69
- package/scripts/lib/example-sites.mjs +0 -49
- package/scripts/lib/frontmatter-yaml.mjs +0 -113
- package/scripts/lib/git-status.mjs +0 -7
- package/scripts/release.mjs +0 -153
- package/scripts/test-banner-visibility.mjs +0 -80
- package/scripts/test-ci-lockfile.mjs +0 -65
- package/scripts/test-cli-discovery.mjs +0 -124
- package/scripts/test-client-javascript.mjs +0 -225
- package/scripts/test-content-check.mjs +0 -621
- package/scripts/test-content-model-v2.mjs +0 -1693
- package/scripts/test-documentation.mjs +0 -189
- package/scripts/test-editor-language-service.mjs +0 -305
- package/scripts/test-engine-commands.mjs +0 -204
- package/scripts/test-examples.mjs +0 -53
- package/scripts/test-heading-ids.mjs +0 -68
- package/scripts/test-navigation-model.mjs +0 -63
- package/scripts/test-navigation-preview.mjs +0 -108
- package/scripts/test-navigation.mjs +0 -157
- package/scripts/test-nested-pages.mjs +0 -125
- package/scripts/test-package-check.mjs +0 -500
- package/scripts/test-page-model.mjs +0 -108
- package/scripts/test-project-config.mjs +0 -139
- package/scripts/test-schemas.mjs +0 -169
- package/scripts/test-site-public.mjs +0 -85
- package/scripts/test-theme-presets.mjs +0 -188
- package/src/components/SiteNotesScript.astro +0 -43
- package/starters/project/.github/workflows/deploy.yml +0 -64
- package/starters/project/README.md +0 -84
- package/starters/project/package-lock.json +0 -4296
- package/starters/project/package.json +0 -37
- package/starters/project/site/config.yaml +0 -1
- package/starters/project/site/pages/000-home/content.md +0 -119
- package/starters/project/site/pages/010-guide/content.md +0 -80
- package/starters/project/site/public/robots.txt +0 -2
- package/starters/project/site/sitewide-content.yaml +0 -3
- package/starters/project/site/theme.yaml +0 -1
- package/tsconfig.json +0 -5
|
@@ -9,45 +9,121 @@
|
|
|
9
9
|
{
|
|
10
10
|
"const": "portfolio",
|
|
11
11
|
"title": "Portfolio",
|
|
12
|
-
"description": "For portfolios and image-led sites, with restrained typography and generous space for images."
|
|
12
|
+
"description": "For portfolios and image-led sites, with restrained typography and generous space for images.",
|
|
13
|
+
"markdownDescription": "For portfolios and image-led sites, with restrained typography and generous space for images.\n\n[Compare theme presets](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#theme-presets)"
|
|
13
14
|
},
|
|
14
15
|
{
|
|
15
16
|
"const": "documentation",
|
|
16
17
|
"title": "Documentation",
|
|
17
|
-
"description": "For guides and reference material, with reading-focused typography and compact spacing."
|
|
18
|
+
"description": "For guides and reference material, with reading-focused typography and compact spacing.",
|
|
19
|
+
"markdownDescription": "For guides and reference material, with reading-focused typography and compact spacing.\n\n[Compare theme presets](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#theme-presets)"
|
|
18
20
|
},
|
|
19
21
|
{
|
|
20
22
|
"const": "project",
|
|
21
23
|
"title": "Project",
|
|
22
|
-
"description": "For project and product sites that balance explanation, code, cards, and images."
|
|
24
|
+
"description": "For project and product sites that balance explanation, code, cards, and images.",
|
|
25
|
+
"markdownDescription": "For project and product sites that balance explanation, code, cards, and images.\n\n[Compare theme presets](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#theme-presets)"
|
|
23
26
|
},
|
|
24
27
|
{
|
|
25
28
|
"const": "statement",
|
|
26
29
|
"title": "Statement",
|
|
27
|
-
"description": "For short, expressive sites, with larger typography, airy spacing, and stronger section emphasis."
|
|
30
|
+
"description": "For short, expressive sites, with larger typography, airy spacing, and stronger section emphasis.",
|
|
31
|
+
"markdownDescription": "For short, expressive sites, with larger typography, airy spacing, and stronger section emphasis.\n\n[Compare theme presets](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#theme-presets)"
|
|
28
32
|
}
|
|
29
33
|
],
|
|
30
|
-
"markdownDescription": "```yaml\npreset: documentation\n```\n\nSelects coordinated
|
|
34
|
+
"markdownDescription": "```yaml\npreset: documentation\n```\n\nSelects coordinated corners, layout, image sizing, content-block defaults, typography, palette and section backgrounds. This is the normal starting point for a theme.\n\n[Compare theme presets](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#theme-presets)"
|
|
31
35
|
},
|
|
32
|
-
"
|
|
33
|
-
"
|
|
36
|
+
"appearance": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"properties": {
|
|
39
|
+
"default": {
|
|
40
|
+
"description": "Initial appearance. System follows the visitor's operating-system preference.",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"oneOf": [
|
|
43
|
+
{
|
|
44
|
+
"const": "system",
|
|
45
|
+
"title": "System",
|
|
46
|
+
"description": "Follow the visitor's operating-system light or dark preference.",
|
|
47
|
+
"markdownDescription": "Follow the visitor's operating-system light or dark preference.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"const": "light",
|
|
51
|
+
"title": "Light",
|
|
52
|
+
"description": "Start with the palette's light appearance.",
|
|
53
|
+
"markdownDescription": "Start with the palette's light appearance.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"const": "dark",
|
|
57
|
+
"title": "Dark",
|
|
58
|
+
"description": "Start with the palette's dark appearance.",
|
|
59
|
+
"markdownDescription": "Start with the palette's dark appearance.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"markdownDescription": "```yaml\nappearance:\n default: system\n```\n\nInitial appearance. System follows the visitor's operating-system preference.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)",
|
|
63
|
+
"examples": [
|
|
64
|
+
"system",
|
|
65
|
+
"light",
|
|
66
|
+
"dark"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"additionalProperties": false,
|
|
71
|
+
"description": "Site-wide initial appearance.",
|
|
72
|
+
"markdownDescription": "```yaml\nappearance:\n default: system\n```\n\nSelects the initial appearance. Enable the reader-facing choice under readerControls.\n\n[Appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)",
|
|
73
|
+
"defaultSnippets": [
|
|
74
|
+
{
|
|
75
|
+
"label": "Set the initial appearance",
|
|
76
|
+
"markdownDescription": "Follow the system color preference or choose a fixed initial appearance.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#appearance)",
|
|
77
|
+
"body": "appearance:\n default: ${1:system}"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"readerControls": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"properties": {
|
|
84
|
+
"appearance": {
|
|
85
|
+
"description": "Show an Appearance control that lets readers choose System, Light, or Dark.",
|
|
86
|
+
"type": "boolean",
|
|
87
|
+
"markdownDescription": "```yaml\nreaderControls:\n appearance: true\n```\n\nShow an Appearance control that lets readers choose System, Light, or Dark.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#reader-display-controls)"
|
|
88
|
+
},
|
|
89
|
+
"focusReading": {
|
|
90
|
+
"description": "Show a Focus reading control that lets readers hide navigation, breadcrumbs, and the footer. Sites with tree navigation always show this control.",
|
|
91
|
+
"type": "boolean",
|
|
92
|
+
"markdownDescription": "```yaml\nreaderControls:\n focusReading: true\n```\n\nShow a Focus reading control that lets readers hide navigation, breadcrumbs, and the footer. Sites with tree navigation always show this control.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#reader-display-controls)"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"additionalProperties": false,
|
|
96
|
+
"description": "Optional controls for the site-wide Display panel.",
|
|
97
|
+
"markdownDescription": "```yaml\nreaderControls:\n appearance: true\n focusReading: true\n```\n\nChoose which optional controls readers can use in the site-wide Display panel.\n\n`appearance: true` lets readers choose System, Light, or Dark. `focusReading: true` lets them hide navigation, breadcrumbs, and the footer while reading.\n\nReading width is always included. Sites with tree navigation always include Focus reading, even when it is not enabled here.\n\n[Reader Display controls](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#reader-display-controls)",
|
|
98
|
+
"defaultSnippets": [
|
|
99
|
+
{
|
|
100
|
+
"label": "Configure the Display panel",
|
|
101
|
+
"markdownDescription": "Show optional Appearance and Focus reading controls. Reading width is already included, and tree navigation always includes Focus reading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#reader-display-controls)",
|
|
102
|
+
"body": "readerControls:\n appearance: ${1:true}\n focusReading: ${2:true}"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"corners": {
|
|
107
|
+
"description": "Site-wide corner treatment. Omit this to use the selected preset.",
|
|
34
108
|
"type": "string",
|
|
35
109
|
"oneOf": [
|
|
36
110
|
{
|
|
37
111
|
"const": "square",
|
|
38
112
|
"title": "Square",
|
|
39
|
-
"description": "Use square corners for navigation, cards and framed content."
|
|
113
|
+
"description": "Use square corners for navigation, cards and framed content.",
|
|
114
|
+
"markdownDescription": "Use square corners for navigation, cards and framed content.\n\n[Corner reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#corners)"
|
|
40
115
|
},
|
|
41
116
|
{
|
|
42
|
-
"const": "
|
|
43
|
-
"title": "
|
|
44
|
-
"description": "Use restrained rounded corners consistently across the site."
|
|
117
|
+
"const": "rounded",
|
|
118
|
+
"title": "Rounded",
|
|
119
|
+
"description": "Use restrained rounded corners consistently across the site.",
|
|
120
|
+
"markdownDescription": "Use restrained rounded corners consistently across the site.\n\n[Corner reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#corners)"
|
|
45
121
|
}
|
|
46
122
|
],
|
|
47
|
-
"markdownDescription": "```yaml\
|
|
123
|
+
"markdownDescription": "```yaml\ncorners: rounded\n```\n\nChooses one consistent corner treatment for navigation, cards and framed content throughout the site.\n\n[Corner reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#corners)",
|
|
48
124
|
"examples": [
|
|
49
125
|
"square",
|
|
50
|
-
"
|
|
126
|
+
"rounded"
|
|
51
127
|
]
|
|
52
128
|
},
|
|
53
129
|
"layout": {
|
|
@@ -60,20 +136,23 @@
|
|
|
60
136
|
{
|
|
61
137
|
"const": "compact",
|
|
62
138
|
"title": "Compact",
|
|
63
|
-
"description": "Use restrained spacing between sections and structured blocks."
|
|
139
|
+
"description": "Use restrained spacing between sections and structured blocks.",
|
|
140
|
+
"markdownDescription": "Use restrained spacing between sections and structured blocks.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
64
141
|
},
|
|
65
142
|
{
|
|
66
143
|
"const": "normal",
|
|
67
144
|
"title": "Normal",
|
|
68
|
-
"description": "Use balanced content spacing."
|
|
145
|
+
"description": "Use balanced content spacing.",
|
|
146
|
+
"markdownDescription": "Use balanced content spacing.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
69
147
|
},
|
|
70
148
|
{
|
|
71
149
|
"const": "spacious",
|
|
72
150
|
"title": "Spacious",
|
|
73
|
-
"description": "Use more expansive spacing between sections and structured blocks."
|
|
151
|
+
"description": "Use more expansive spacing between sections and structured blocks.",
|
|
152
|
+
"markdownDescription": "Use more expansive spacing between sections and structured blocks.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
74
153
|
}
|
|
75
154
|
],
|
|
76
|
-
"markdownDescription": "```yaml\nlayout:\n contentSpacing: compact\n```\n\nPage content spacing. Omit this to keep the selected preset or inherited page setting.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
155
|
+
"markdownDescription": "```yaml\nlayout:\n contentSpacing: compact\n```\n\nPage content spacing. Omit this to keep the selected preset or inherited page setting.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
77
156
|
},
|
|
78
157
|
"textWidth": {
|
|
79
158
|
"description": "Body-text line length. Omit this to keep the selected preset or inherited page setting.",
|
|
@@ -82,26 +161,29 @@
|
|
|
82
161
|
{
|
|
83
162
|
"const": "narrow",
|
|
84
163
|
"title": "Narrow",
|
|
85
|
-
"description": "Use a shorter line length suited to reading-focused text."
|
|
164
|
+
"description": "Use a shorter line length suited to reading-focused text.",
|
|
165
|
+
"markdownDescription": "Use a shorter line length suited to reading-focused text.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
86
166
|
},
|
|
87
167
|
{
|
|
88
168
|
"const": "normal",
|
|
89
169
|
"title": "Normal",
|
|
90
|
-
"description": "Use the balanced default line length."
|
|
170
|
+
"description": "Use the balanced default line length.",
|
|
171
|
+
"markdownDescription": "Use the balanced default line length.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
91
172
|
},
|
|
92
173
|
{
|
|
93
174
|
"const": "wide",
|
|
94
175
|
"title": "Wide",
|
|
95
|
-
"description": "Allow body text to use more horizontal space."
|
|
176
|
+
"description": "Allow body text to use more horizontal space.",
|
|
177
|
+
"markdownDescription": "Allow body text to use more horizontal space.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
96
178
|
}
|
|
97
179
|
],
|
|
98
|
-
"markdownDescription": "```yaml\nlayout:\n textWidth: narrow\n```\n\nBody-text line length. Omit this to keep the selected preset or inherited page setting.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
180
|
+
"markdownDescription": "```yaml\nlayout:\n textWidth: narrow\n```\n\nBody-text line length. Omit this to keep the selected preset or inherited page setting.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
99
181
|
},
|
|
100
182
|
"pageWidth": {
|
|
101
183
|
"description": "Maximum width of the site layout. Omit this to keep the selected preset.",
|
|
102
184
|
"type": "string",
|
|
103
185
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
104
|
-
"markdownDescription": "```yaml\nlayout:\n pageWidth: 72rem\n```\n\nMaximum width of the site layout. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
186
|
+
"markdownDescription": "```yaml\nlayout:\n pageWidth: 72rem\n```\n\nMaximum width of the site layout. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
105
187
|
},
|
|
106
188
|
"gutter": {
|
|
107
189
|
"description": "Horizontal page gutter as one value or separate desktop and mobile values.",
|
|
@@ -118,13 +200,13 @@
|
|
|
118
200
|
"type": "string",
|
|
119
201
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
120
202
|
"description": "Responsive CSS length or clamp() expression.",
|
|
121
|
-
"markdownDescription": "```yaml\nlayout:\n gutter:\n desktop: clamp(1.25rem, 4vw, 3rem)\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
203
|
+
"markdownDescription": "```yaml\nlayout:\n gutter:\n desktop: clamp(1.25rem, 4vw, 3rem)\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
122
204
|
},
|
|
123
205
|
"mobile": {
|
|
124
206
|
"type": "string",
|
|
125
207
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
126
208
|
"description": "Responsive CSS length or clamp() expression.",
|
|
127
|
-
"markdownDescription": "```yaml\nlayout:\n gutter:\n mobile: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
209
|
+
"markdownDescription": "```yaml\nlayout:\n gutter:\n mobile: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
128
210
|
}
|
|
129
211
|
},
|
|
130
212
|
"required": [
|
|
@@ -134,11 +216,11 @@
|
|
|
134
216
|
"additionalProperties": false
|
|
135
217
|
}
|
|
136
218
|
],
|
|
137
|
-
"markdownDescription": "```yaml\nlayout:\n gutter:\n desktop: clamp(1.25rem, 4vw, 3rem)\n mobile: 1rem\n```\n\nHorizontal page gutter as one value or separate desktop and mobile values.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
219
|
+
"markdownDescription": "```yaml\nlayout:\n gutter:\n desktop: clamp(1.25rem, 4vw, 3rem)\n mobile: 1rem\n```\n\nHorizontal page gutter as one value or separate desktop and mobile values.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
138
220
|
"defaultSnippets": [
|
|
139
221
|
{
|
|
140
222
|
"label": "Responsive page gutter",
|
|
141
|
-
"markdownDescription": "Set separate page gutters for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
223
|
+
"markdownDescription": "Set separate page gutters for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
142
224
|
"body": {
|
|
143
225
|
"desktop": "${1:clamp(1.25rem, 4vw, 3rem)}",
|
|
144
226
|
"mobile": "${2:1rem}"
|
|
@@ -165,13 +247,13 @@
|
|
|
165
247
|
"type": "string",
|
|
166
248
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
167
249
|
"description": "Responsive CSS length or clamp() expression.",
|
|
168
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap:\n desktop: 1.5em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
250
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap:\n desktop: 1.5em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
169
251
|
},
|
|
170
252
|
"mobile": {
|
|
171
253
|
"type": "string",
|
|
172
254
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
173
255
|
"description": "Responsive CSS length or clamp() expression.",
|
|
174
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap:\n mobile: 1.5em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
256
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap:\n mobile: 1.5em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
175
257
|
}
|
|
176
258
|
},
|
|
177
259
|
"required": [
|
|
@@ -181,11 +263,11 @@
|
|
|
181
263
|
"additionalProperties": false
|
|
182
264
|
}
|
|
183
265
|
],
|
|
184
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap: 1.5em\n```\n\nDefault vertical gap between structured content blocks.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
266
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n blockGap: 1.5em\n```\n\nDefault vertical gap between structured content blocks.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
185
267
|
"defaultSnippets": [
|
|
186
268
|
{
|
|
187
269
|
"label": "Responsive spacing",
|
|
188
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
270
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
189
271
|
"body": {
|
|
190
272
|
"desktop": "${1:1.5em}",
|
|
191
273
|
"mobile": "${2:1.5em}"
|
|
@@ -208,13 +290,13 @@
|
|
|
208
290
|
"type": "string",
|
|
209
291
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
210
292
|
"description": "Responsive CSS length or clamp() expression.",
|
|
211
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom:\n desktop: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
293
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom:\n desktop: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
212
294
|
},
|
|
213
295
|
"mobile": {
|
|
214
296
|
"type": "string",
|
|
215
297
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
216
298
|
"description": "Responsive CSS length or clamp() expression.",
|
|
217
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom:\n mobile: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
299
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom:\n mobile: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
218
300
|
}
|
|
219
301
|
},
|
|
220
302
|
"required": [
|
|
@@ -224,11 +306,11 @@
|
|
|
224
306
|
"additionalProperties": false
|
|
225
307
|
}
|
|
226
308
|
],
|
|
227
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom: 2rem\n```\n\nBottom space after the final section.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
309
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n finalSectionBottom: 2rem\n```\n\nBottom space after the final section.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
228
310
|
"defaultSnippets": [
|
|
229
311
|
{
|
|
230
312
|
"label": "Responsive spacing",
|
|
231
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
313
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
232
314
|
"body": {
|
|
233
315
|
"desktop": "${1:2rem}",
|
|
234
316
|
"mobile": "${2:2rem}"
|
|
@@ -251,13 +333,13 @@
|
|
|
251
333
|
"type": "string",
|
|
252
334
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
253
335
|
"description": "Responsive CSS length or clamp() expression.",
|
|
254
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop:\n desktop: 1.5rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
336
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop:\n desktop: 1.5rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
255
337
|
},
|
|
256
338
|
"mobile": {
|
|
257
339
|
"type": "string",
|
|
258
340
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
259
341
|
"description": "Responsive CSS length or clamp() expression.",
|
|
260
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop:\n mobile: 1.5rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
342
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop:\n mobile: 1.5rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
261
343
|
}
|
|
262
344
|
},
|
|
263
345
|
"required": [
|
|
@@ -267,11 +349,11 @@
|
|
|
267
349
|
"additionalProperties": false
|
|
268
350
|
}
|
|
269
351
|
],
|
|
270
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop: 1.5rem\n```\n\nTop space before the first section.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
352
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n firstSectionTop: 1.5rem\n```\n\nTop space before the first section.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
271
353
|
"defaultSnippets": [
|
|
272
354
|
{
|
|
273
355
|
"label": "Responsive spacing",
|
|
274
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
356
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
275
357
|
"body": {
|
|
276
358
|
"desktop": "${1:1.5rem}",
|
|
277
359
|
"mobile": "${2:1.5rem}"
|
|
@@ -294,13 +376,13 @@
|
|
|
294
376
|
"type": "string",
|
|
295
377
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
296
378
|
"description": "Responsive CSS length or clamp() expression.",
|
|
297
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock:\n desktop: 0.75em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
379
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock:\n desktop: 0.75em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
298
380
|
},
|
|
299
381
|
"mobile": {
|
|
300
382
|
"type": "string",
|
|
301
383
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
302
384
|
"description": "Responsive CSS length or clamp() expression.",
|
|
303
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock:\n mobile: 0.75em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
385
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock:\n mobile: 0.75em\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
304
386
|
}
|
|
305
387
|
},
|
|
306
388
|
"required": [
|
|
@@ -310,11 +392,11 @@
|
|
|
310
392
|
"additionalProperties": false
|
|
311
393
|
}
|
|
312
394
|
],
|
|
313
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock: 0.75em\n```\n\nGap from a section heading to a following structured block.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
395
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n headingToBlock: 0.75em\n```\n\nGap from a section heading to a following structured block.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
314
396
|
"defaultSnippets": [
|
|
315
397
|
{
|
|
316
398
|
"label": "Responsive spacing",
|
|
317
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
399
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
318
400
|
"body": {
|
|
319
401
|
"desktop": "${1:0.75em}",
|
|
320
402
|
"mobile": "${2:0.75em}"
|
|
@@ -337,13 +419,13 @@
|
|
|
337
419
|
"type": "string",
|
|
338
420
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
339
421
|
"description": "Responsive CSS length or clamp() expression.",
|
|
340
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap:\n desktop: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
422
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap:\n desktop: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
341
423
|
},
|
|
342
424
|
"mobile": {
|
|
343
425
|
"type": "string",
|
|
344
426
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
345
427
|
"description": "Responsive CSS length or clamp() expression.",
|
|
346
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap:\n mobile: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
428
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap:\n mobile: 1rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
347
429
|
}
|
|
348
430
|
},
|
|
349
431
|
"required": [
|
|
@@ -353,11 +435,11 @@
|
|
|
353
435
|
"additionalProperties": false
|
|
354
436
|
}
|
|
355
437
|
],
|
|
356
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap: 1rem\n```\n\nGap between images in an image stack.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
438
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n imageGap: 1rem\n```\n\nGap between images in an image stack.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
357
439
|
"defaultSnippets": [
|
|
358
440
|
{
|
|
359
441
|
"label": "Responsive spacing",
|
|
360
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
442
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
361
443
|
"body": {
|
|
362
444
|
"desktop": "${1:1rem}",
|
|
363
445
|
"mobile": "${2:1rem}"
|
|
@@ -380,13 +462,13 @@
|
|
|
380
462
|
"type": "string",
|
|
381
463
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
382
464
|
"description": "Responsive CSS length or clamp() expression.",
|
|
383
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap:\n desktop: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
465
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap:\n desktop: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
384
466
|
},
|
|
385
467
|
"mobile": {
|
|
386
468
|
"type": "string",
|
|
387
469
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
388
470
|
"description": "Responsive CSS length or clamp() expression.",
|
|
389
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap:\n mobile: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
471
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap:\n mobile: 2rem\n```\n\nResponsive CSS length or clamp() expression.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
390
472
|
}
|
|
391
473
|
},
|
|
392
474
|
"required": [
|
|
@@ -396,11 +478,11 @@
|
|
|
396
478
|
"additionalProperties": false
|
|
397
479
|
}
|
|
398
480
|
],
|
|
399
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap: 2rem\n```\n\nVertical separation between page sections.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
481
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap: 2rem\n```\n\nVertical separation between page sections.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
400
482
|
"defaultSnippets": [
|
|
401
483
|
{
|
|
402
484
|
"label": "Responsive spacing",
|
|
403
|
-
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
485
|
+
"markdownDescription": "Set separate spacing values for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
404
486
|
"body": {
|
|
405
487
|
"desktop": "${1:2rem}",
|
|
406
488
|
"mobile": "${2:2rem}"
|
|
@@ -410,11 +492,11 @@
|
|
|
410
492
|
}
|
|
411
493
|
},
|
|
412
494
|
"additionalProperties": false,
|
|
413
|
-
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap: 2rem\n```\n\nFine-grained spacing overrides.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
495
|
+
"markdownDescription": "```yaml\nlayout:\n spacing:\n sectionGap: 2rem\n```\n\nFine-grained spacing overrides.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
414
496
|
"defaultSnippets": [
|
|
415
497
|
{
|
|
416
498
|
"label": "Layout spacing overrides",
|
|
417
|
-
"markdownDescription": "Start with the structural spacing values most commonly adjusted together.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
499
|
+
"markdownDescription": "Start with the structural spacing values most commonly adjusted together.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)",
|
|
418
500
|
"body": {
|
|
419
501
|
"sectionGap": {
|
|
420
502
|
"desktop": "${1:2rem}",
|
|
@@ -429,16 +511,35 @@
|
|
|
429
511
|
},
|
|
430
512
|
"additionalProperties": false,
|
|
431
513
|
"description": "Optional layout overrides applied after the preset.",
|
|
432
|
-
"markdownDescription": "```yaml\nlayout:\n contentSpacing: compact\n textWidth: narrow\n```\n\nOverrides text width, content spacing, page width and gutters after the selected preset.\n\n[Layout reference](https://github.com/janga/norna/blob/v0.7.
|
|
514
|
+
"markdownDescription": "```yaml\nlayout:\n contentSpacing: compact\n textWidth: narrow\n```\n\nOverrides text width, content spacing, page width and gutters after the selected preset.\n\n[Layout reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#layout)"
|
|
433
515
|
},
|
|
434
516
|
"images": {
|
|
435
517
|
"type": "object",
|
|
436
518
|
"properties": {
|
|
519
|
+
"presentation": {
|
|
520
|
+
"description": "Managed-image presentation method. Omit this to keep the selected preset or inherited page setting.",
|
|
521
|
+
"type": "string",
|
|
522
|
+
"oneOf": [
|
|
523
|
+
{
|
|
524
|
+
"const": "prose-aligned",
|
|
525
|
+
"title": "Prose-aligned",
|
|
526
|
+
"description": "Start managed images and captions at the body-text edge and size them from the page content area.",
|
|
527
|
+
"markdownDescription": "Start managed images and captions at the body-text edge and size them from the page content area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"const": "centered-fit",
|
|
531
|
+
"title": "Centered fit",
|
|
532
|
+
"description": "Center managed images and captions in the page media area and constrain them by available width and viewport height.",
|
|
533
|
+
"markdownDescription": "Center managed images and captions in the page media area and constrain them by available width and viewport height.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
534
|
+
}
|
|
535
|
+
],
|
|
536
|
+
"markdownDescription": "```yaml\nimages:\n presentation: prose-aligned\n```\n\nManaged-image presentation method. Omit this to keep the selected preset or inherited page setting.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
537
|
+
},
|
|
437
538
|
"width": {
|
|
438
539
|
"description": "Maximum managed-image width. Omit this to keep the selected preset.",
|
|
439
540
|
"type": "string",
|
|
440
541
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)|clamp\\(\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*,\\s*(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|vw|vh|vmin|vmax|ch|%)\\s*\\))$",
|
|
441
|
-
"markdownDescription": "```yaml\nimages:\n width: 900px\n```\n\nMaximum managed-image width. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
542
|
+
"markdownDescription": "```yaml\nimages:\n width: 900px\n```\n\nMaximum managed-image width. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
442
543
|
},
|
|
443
544
|
"maxAvailableWidthPercent": {
|
|
444
545
|
"description": "Maximum percentage of available horizontal space used by managed images.",
|
|
@@ -456,14 +557,14 @@
|
|
|
456
557
|
"exclusiveMinimum": 0,
|
|
457
558
|
"maximum": 100,
|
|
458
559
|
"description": "Percentage used on wider screens.",
|
|
459
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n desktop: 100\n```\n\nPercentage used on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
560
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n desktop: 100\n```\n\nPercentage used on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
460
561
|
},
|
|
461
562
|
"mobile": {
|
|
462
563
|
"type": "number",
|
|
463
564
|
"exclusiveMinimum": 0,
|
|
464
565
|
"maximum": 100,
|
|
465
566
|
"description": "Percentage used on narrow screens.",
|
|
466
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n mobile: 100\n```\n\nPercentage used on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
567
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n mobile: 100\n```\n\nPercentage used on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
467
568
|
}
|
|
468
569
|
},
|
|
469
570
|
"required": [
|
|
@@ -473,11 +574,11 @@
|
|
|
473
574
|
"additionalProperties": false
|
|
474
575
|
}
|
|
475
576
|
],
|
|
476
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n desktop: 100\n mobile: 100\n```\n\nMaximum percentage of available horizontal space used by managed images.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
577
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableWidthPercent:\n desktop: 100\n mobile: 100\n```\n\nMaximum percentage of available horizontal space used by managed images.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)",
|
|
477
578
|
"defaultSnippets": [
|
|
478
579
|
{
|
|
479
580
|
"label": "Responsive image limit",
|
|
480
|
-
"markdownDescription": "Set separate managed-image limits for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
581
|
+
"markdownDescription": "Set separate managed-image limits for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)",
|
|
481
582
|
"body": {
|
|
482
583
|
"desktop": "${1:100}",
|
|
483
584
|
"mobile": "${2:100}"
|
|
@@ -486,7 +587,7 @@
|
|
|
486
587
|
]
|
|
487
588
|
},
|
|
488
589
|
"maxAvailableHeightPercent": {
|
|
489
|
-
"description": "Maximum percentage of viewport height used by
|
|
590
|
+
"description": "Maximum percentage of viewport height used by centered-fit images. This setting is unavailable with prose-aligned presentation.",
|
|
490
591
|
"anyOf": [
|
|
491
592
|
{
|
|
492
593
|
"type": "number",
|
|
@@ -501,14 +602,14 @@
|
|
|
501
602
|
"exclusiveMinimum": 0,
|
|
502
603
|
"maximum": 100,
|
|
503
604
|
"description": "Percentage used on wider screens.",
|
|
504
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n desktop: 74\n```\n\nPercentage used on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
605
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n desktop: 74\n```\n\nPercentage used on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
505
606
|
},
|
|
506
607
|
"mobile": {
|
|
507
608
|
"type": "number",
|
|
508
609
|
"exclusiveMinimum": 0,
|
|
509
610
|
"maximum": 100,
|
|
510
611
|
"description": "Percentage used on narrow screens.",
|
|
511
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n mobile: 68\n```\n\nPercentage used on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
612
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n mobile: 68\n```\n\nPercentage used on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
512
613
|
}
|
|
513
614
|
},
|
|
514
615
|
"required": [
|
|
@@ -518,11 +619,11 @@
|
|
|
518
619
|
"additionalProperties": false
|
|
519
620
|
}
|
|
520
621
|
],
|
|
521
|
-
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n desktop: 74\n mobile: 68\n```\n\nMaximum percentage of viewport height used by
|
|
622
|
+
"markdownDescription": "```yaml\nimages:\n maxAvailableHeightPercent:\n desktop: 74\n mobile: 68\n```\n\nMaximum percentage of viewport height used by centered-fit images. This setting is unavailable with prose-aligned presentation.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)",
|
|
522
623
|
"defaultSnippets": [
|
|
523
624
|
{
|
|
524
625
|
"label": "Responsive image limit",
|
|
525
|
-
"markdownDescription": "Set separate managed-image limits for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
626
|
+
"markdownDescription": "Set separate managed-image limits for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)",
|
|
526
627
|
"body": {
|
|
527
628
|
"desktop": "${1:74}",
|
|
528
629
|
"mobile": "${2:68}"
|
|
@@ -532,8 +633,75 @@
|
|
|
532
633
|
}
|
|
533
634
|
},
|
|
534
635
|
"additionalProperties": false,
|
|
535
|
-
"description": "Optional defaults for managed
|
|
536
|
-
"markdownDescription": "```yaml\nimages:\n
|
|
636
|
+
"description": "Optional defaults for placing managed images inside the page content area. Persistent navigation remains outside this area.",
|
|
637
|
+
"markdownDescription": "```yaml\nimages:\n presentation: prose-aligned\n width: 900px\n```\n\nOverrides how Norna-managed image stacks and carousels align inside the page content area and how much space they may use. Persistent navigation remains outside this area.\n\n[Image sizing reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#image-sizing)"
|
|
638
|
+
},
|
|
639
|
+
"blocks": {
|
|
640
|
+
"type": "object",
|
|
641
|
+
"properties": {
|
|
642
|
+
"cardList": {
|
|
643
|
+
"type": "object",
|
|
644
|
+
"properties": {
|
|
645
|
+
"width": {
|
|
646
|
+
"type": "string",
|
|
647
|
+
"description": "Default maximum width for card lists. A width written in a norna-card-list block overrides this value.",
|
|
648
|
+
"oneOf": [
|
|
649
|
+
{
|
|
650
|
+
"const": "text",
|
|
651
|
+
"title": "Text width",
|
|
652
|
+
"description": "Match the active body-text width, including a reader-selected reading width.",
|
|
653
|
+
"markdownDescription": "Match the active body-text width, including a reader-selected reading width.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"const": "narrow",
|
|
657
|
+
"title": "Narrow",
|
|
658
|
+
"description": "Limit the complete card list to at most 48rem.",
|
|
659
|
+
"markdownDescription": "Limit the complete card list to at most 48rem.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"const": "normal",
|
|
663
|
+
"title": "Normal",
|
|
664
|
+
"description": "Limit the complete card list to at most 56rem.",
|
|
665
|
+
"markdownDescription": "Limit the complete card list to at most 56rem.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"const": "wide",
|
|
669
|
+
"title": "Wide",
|
|
670
|
+
"description": "Allow the complete card list to use the available page-layout width.",
|
|
671
|
+
"markdownDescription": "Allow the complete card list to use the available page-layout width.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)"
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"markdownDescription": "```yaml\nblocks:\n cardList:\n width: text\n```\n\nDefault maximum width for card lists. A width written in a norna-card-list block overrides this value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)",
|
|
675
|
+
"examples": [
|
|
676
|
+
"text",
|
|
677
|
+
"narrow",
|
|
678
|
+
"normal",
|
|
679
|
+
"wide"
|
|
680
|
+
]
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"required": [
|
|
684
|
+
"width"
|
|
685
|
+
],
|
|
686
|
+
"additionalProperties": false,
|
|
687
|
+
"description": "Site-wide card-list defaults.",
|
|
688
|
+
"markdownDescription": "```yaml\nblocks:\n cardList:\n width: text\n```\n\nSets site-wide defaults for card lists. A `width` option in an individual `norna-card-list` block overrides this setting.\n\n[Content block defaults](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"additionalProperties": false,
|
|
692
|
+
"description": "Optional site-wide defaults for structured Norna content blocks.",
|
|
693
|
+
"markdownDescription": "```yaml\nblocks:\n cardList:\n width: text\n```\n\nOverrides preset defaults for structured Norna content blocks throughout the site. Options written directly in a Markdown block take priority.\n\n[Content block defaults](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)",
|
|
694
|
+
"defaultSnippets": [
|
|
695
|
+
{
|
|
696
|
+
"label": "Override content-block defaults",
|
|
697
|
+
"markdownDescription": "Override a preset default for structured content blocks across the site.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#content-block-defaults)",
|
|
698
|
+
"body": {
|
|
699
|
+
"cardList": {
|
|
700
|
+
"width": "${1:text}"
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
]
|
|
537
705
|
},
|
|
538
706
|
"typography": {
|
|
539
707
|
"type": "object",
|
|
@@ -542,7 +710,7 @@
|
|
|
542
710
|
"description": "CSS font-family stack.",
|
|
543
711
|
"type": "string",
|
|
544
712
|
"minLength": 1,
|
|
545
|
-
"markdownDescription": "```yaml\ntypography:\n fontFamily: \"Arial, sans-serif\"\n```\n\nCSS font-family stack.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
713
|
+
"markdownDescription": "```yaml\ntypography:\n fontFamily: \"Arial, sans-serif\"\n```\n\nCSS font-family stack.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
546
714
|
},
|
|
547
715
|
"profile": {
|
|
548
716
|
"description": "Typography profile. Omit this to keep the selected preset.",
|
|
@@ -551,25 +719,29 @@
|
|
|
551
719
|
{
|
|
552
720
|
"const": "restrained",
|
|
553
721
|
"title": "Restrained",
|
|
554
|
-
"description": "Quiet typography with regular-weight headings and balanced line lengths."
|
|
722
|
+
"description": "Quiet typography with regular-weight headings and balanced line lengths.",
|
|
723
|
+
"markdownDescription": "Quiet typography with regular-weight headings and balanced line lengths.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
555
724
|
},
|
|
556
725
|
{
|
|
557
726
|
"const": "dense",
|
|
558
727
|
"title": "Dense",
|
|
559
|
-
"description": "Compact typography with wider text and tighter line height."
|
|
728
|
+
"description": "Compact typography with wider text and tighter line height.",
|
|
729
|
+
"markdownDescription": "Compact typography with wider text and tighter line height.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
560
730
|
},
|
|
561
731
|
{
|
|
562
732
|
"const": "reading",
|
|
563
733
|
"title": "Reading",
|
|
564
|
-
"description": "Reading-focused typography with narrower text and relaxed line height."
|
|
734
|
+
"description": "Reading-focused typography with narrower text and relaxed line height.",
|
|
735
|
+
"markdownDescription": "Reading-focused typography with narrower text and relaxed line height.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
565
736
|
},
|
|
566
737
|
{
|
|
567
738
|
"const": "statement",
|
|
568
739
|
"title": "Statement",
|
|
569
|
-
"description": "Stronger headings and tighter body rhythm for short, expressive pages."
|
|
740
|
+
"description": "Stronger headings and tighter body rhythm for short, expressive pages.",
|
|
741
|
+
"markdownDescription": "Stronger headings and tighter body rhythm for short, expressive pages.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
570
742
|
}
|
|
571
743
|
],
|
|
572
|
-
"markdownDescription": "```yaml\ntypography:\n profile: reading\n```\n\nTypography profile. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
744
|
+
"markdownDescription": "```yaml\ntypography:\n profile: reading\n```\n\nTypography profile. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
573
745
|
},
|
|
574
746
|
"rhythm": {
|
|
575
747
|
"description": "Typography spacing rhythm. Omit this to keep the selected preset.",
|
|
@@ -578,20 +750,23 @@
|
|
|
578
750
|
{
|
|
579
751
|
"const": "compact",
|
|
580
752
|
"title": "Compact",
|
|
581
|
-
"description": "Reduce vertical spacing while preserving readable separation."
|
|
753
|
+
"description": "Reduce vertical spacing while preserving readable separation.",
|
|
754
|
+
"markdownDescription": "Reduce vertical spacing while preserving readable separation.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
582
755
|
},
|
|
583
756
|
{
|
|
584
757
|
"const": "normal",
|
|
585
758
|
"title": "Normal",
|
|
586
|
-
"description": "Use balanced vertical spacing."
|
|
759
|
+
"description": "Use balanced vertical spacing.",
|
|
760
|
+
"markdownDescription": "Use balanced vertical spacing.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
587
761
|
},
|
|
588
762
|
{
|
|
589
763
|
"const": "airy",
|
|
590
764
|
"title": "Airy",
|
|
591
|
-
"description": "Increase vertical spacing for a more expansive presentation."
|
|
765
|
+
"description": "Increase vertical spacing for a more expansive presentation.",
|
|
766
|
+
"markdownDescription": "Increase vertical spacing for a more expansive presentation.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
592
767
|
}
|
|
593
768
|
],
|
|
594
|
-
"markdownDescription": "```yaml\ntypography:\n rhythm: normal\n```\n\nTypography spacing rhythm. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
769
|
+
"markdownDescription": "```yaml\ntypography:\n rhythm: normal\n```\n\nTypography spacing rhythm. Omit this to keep the selected preset.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
595
770
|
},
|
|
596
771
|
"overrides": {
|
|
597
772
|
"description": "Focused typography overrides applied after the profile.",
|
|
@@ -616,20 +791,23 @@
|
|
|
616
791
|
{
|
|
617
792
|
"const": "left",
|
|
618
793
|
"title": "Left",
|
|
619
|
-
"description": "Align text with the left edge of its text area."
|
|
794
|
+
"description": "Align text with the left edge of its text area.",
|
|
795
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
620
796
|
},
|
|
621
797
|
{
|
|
622
798
|
"const": "center",
|
|
623
799
|
"title": "Center",
|
|
624
|
-
"description": "Center text within its text area."
|
|
800
|
+
"description": "Center text within its text area.",
|
|
801
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
625
802
|
},
|
|
626
803
|
{
|
|
627
804
|
"const": "right",
|
|
628
805
|
"title": "Right",
|
|
629
|
-
"description": "Align text with the right edge of its text area."
|
|
806
|
+
"description": "Align text with the right edge of its text area.",
|
|
807
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
630
808
|
}
|
|
631
809
|
],
|
|
632
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
810
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
633
811
|
},
|
|
634
812
|
"mobile": {
|
|
635
813
|
"description": "Text alignment on narrow screens.",
|
|
@@ -638,28 +816,31 @@
|
|
|
638
816
|
{
|
|
639
817
|
"const": "left",
|
|
640
818
|
"title": "Left",
|
|
641
|
-
"description": "Align text with the left edge of its text area."
|
|
819
|
+
"description": "Align text with the left edge of its text area.",
|
|
820
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
642
821
|
},
|
|
643
822
|
{
|
|
644
823
|
"const": "center",
|
|
645
824
|
"title": "Center",
|
|
646
|
-
"description": "Center text within its text area."
|
|
825
|
+
"description": "Center text within its text area.",
|
|
826
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
647
827
|
},
|
|
648
828
|
{
|
|
649
829
|
"const": "right",
|
|
650
830
|
"title": "Right",
|
|
651
|
-
"description": "Align text with the right edge of its text area."
|
|
831
|
+
"description": "Align text with the right edge of its text area.",
|
|
832
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
652
833
|
}
|
|
653
834
|
],
|
|
654
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
835
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
655
836
|
}
|
|
656
837
|
},
|
|
657
838
|
"additionalProperties": false,
|
|
658
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
839
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
659
840
|
"defaultSnippets": [
|
|
660
841
|
{
|
|
661
842
|
"label": "Responsive text alignment",
|
|
662
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
843
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
663
844
|
"body": {
|
|
664
845
|
"desktop": "${1:left}",
|
|
665
846
|
"mobile": "${2:left}"
|
|
@@ -674,32 +855,36 @@
|
|
|
674
855
|
{
|
|
675
856
|
"const": "small",
|
|
676
857
|
"title": "Small",
|
|
677
|
-
"description": "Use the small type size from the active typography system."
|
|
858
|
+
"description": "Use the small type size from the active typography system.",
|
|
859
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
678
860
|
},
|
|
679
861
|
{
|
|
680
862
|
"const": "medium",
|
|
681
863
|
"title": "Medium",
|
|
682
|
-
"description": "Use the standard type size from the active typography system."
|
|
864
|
+
"description": "Use the standard type size from the active typography system.",
|
|
865
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
683
866
|
},
|
|
684
867
|
{
|
|
685
868
|
"const": "large",
|
|
686
869
|
"title": "Large",
|
|
687
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
870
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
871
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
688
872
|
},
|
|
689
873
|
{
|
|
690
874
|
"const": "xlarge",
|
|
691
875
|
"title": "Extra large",
|
|
692
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
876
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
877
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
693
878
|
}
|
|
694
879
|
],
|
|
695
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
880
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
696
881
|
},
|
|
697
882
|
"lineHeight": {
|
|
698
883
|
"type": "number",
|
|
699
884
|
"minimum": 1,
|
|
700
885
|
"maximum": 3,
|
|
701
|
-
"description": "Unitless line height between 1 and 3.",
|
|
702
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
886
|
+
"description": "Unitless heading line height between 1 and 3.",
|
|
887
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n lineHeight: 1.5\n```\n\nUnitless heading line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
703
888
|
},
|
|
704
889
|
"weight": {
|
|
705
890
|
"description": "Heading font weight. Omit this to keep the profile value.",
|
|
@@ -707,41 +892,45 @@
|
|
|
707
892
|
{
|
|
708
893
|
"const": 400,
|
|
709
894
|
"title": "Regular",
|
|
710
|
-
"description": "Use regular font weight."
|
|
895
|
+
"description": "Use regular font weight.",
|
|
896
|
+
"markdownDescription": "Use regular font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
711
897
|
},
|
|
712
898
|
{
|
|
713
899
|
"const": 500,
|
|
714
900
|
"title": "Medium",
|
|
715
|
-
"description": "Use medium font weight."
|
|
901
|
+
"description": "Use medium font weight.",
|
|
902
|
+
"markdownDescription": "Use medium font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
716
903
|
},
|
|
717
904
|
{
|
|
718
905
|
"const": 600,
|
|
719
906
|
"title": "Semibold",
|
|
720
|
-
"description": "Use semibold font weight."
|
|
907
|
+
"description": "Use semibold font weight.",
|
|
908
|
+
"markdownDescription": "Use semibold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
721
909
|
},
|
|
722
910
|
{
|
|
723
911
|
"const": 700,
|
|
724
912
|
"title": "Bold",
|
|
725
|
-
"description": "Use bold font weight."
|
|
913
|
+
"description": "Use bold font weight.",
|
|
914
|
+
"markdownDescription": "Use bold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
726
915
|
}
|
|
727
916
|
],
|
|
728
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
917
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
729
918
|
},
|
|
730
919
|
"spacingBefore": {
|
|
731
920
|
"description": "Vertical space before the heading.",
|
|
732
921
|
"type": "string",
|
|
733
922
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
734
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
923
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
735
924
|
},
|
|
736
925
|
"spacingAfter": {
|
|
737
926
|
"description": "Vertical space after the heading.",
|
|
738
927
|
"type": "string",
|
|
739
928
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
740
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
929
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
741
930
|
}
|
|
742
931
|
},
|
|
743
932
|
"additionalProperties": false,
|
|
744
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n size: medium\n```\n\nOverrides for Markdown level 1 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
933
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h1:\n size: medium\n```\n\nOverrides for Markdown level 1 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
745
934
|
},
|
|
746
935
|
"h2": {
|
|
747
936
|
"description": "Overrides for Markdown level 2 section headings.",
|
|
@@ -758,20 +947,23 @@
|
|
|
758
947
|
{
|
|
759
948
|
"const": "left",
|
|
760
949
|
"title": "Left",
|
|
761
|
-
"description": "Align text with the left edge of its text area."
|
|
950
|
+
"description": "Align text with the left edge of its text area.",
|
|
951
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
762
952
|
},
|
|
763
953
|
{
|
|
764
954
|
"const": "center",
|
|
765
955
|
"title": "Center",
|
|
766
|
-
"description": "Center text within its text area."
|
|
956
|
+
"description": "Center text within its text area.",
|
|
957
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
767
958
|
},
|
|
768
959
|
{
|
|
769
960
|
"const": "right",
|
|
770
961
|
"title": "Right",
|
|
771
|
-
"description": "Align text with the right edge of its text area."
|
|
962
|
+
"description": "Align text with the right edge of its text area.",
|
|
963
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
772
964
|
}
|
|
773
965
|
],
|
|
774
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
966
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
775
967
|
},
|
|
776
968
|
"mobile": {
|
|
777
969
|
"description": "Text alignment on narrow screens.",
|
|
@@ -780,28 +972,31 @@
|
|
|
780
972
|
{
|
|
781
973
|
"const": "left",
|
|
782
974
|
"title": "Left",
|
|
783
|
-
"description": "Align text with the left edge of its text area."
|
|
975
|
+
"description": "Align text with the left edge of its text area.",
|
|
976
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
784
977
|
},
|
|
785
978
|
{
|
|
786
979
|
"const": "center",
|
|
787
980
|
"title": "Center",
|
|
788
|
-
"description": "Center text within its text area."
|
|
981
|
+
"description": "Center text within its text area.",
|
|
982
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
789
983
|
},
|
|
790
984
|
{
|
|
791
985
|
"const": "right",
|
|
792
986
|
"title": "Right",
|
|
793
|
-
"description": "Align text with the right edge of its text area."
|
|
987
|
+
"description": "Align text with the right edge of its text area.",
|
|
988
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
794
989
|
}
|
|
795
990
|
],
|
|
796
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
991
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
797
992
|
}
|
|
798
993
|
},
|
|
799
994
|
"additionalProperties": false,
|
|
800
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
995
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
801
996
|
"defaultSnippets": [
|
|
802
997
|
{
|
|
803
998
|
"label": "Responsive text alignment",
|
|
804
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
999
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
805
1000
|
"body": {
|
|
806
1001
|
"desktop": "${1:left}",
|
|
807
1002
|
"mobile": "${2:left}"
|
|
@@ -816,32 +1011,36 @@
|
|
|
816
1011
|
{
|
|
817
1012
|
"const": "small",
|
|
818
1013
|
"title": "Small",
|
|
819
|
-
"description": "Use the small type size from the active typography system."
|
|
1014
|
+
"description": "Use the small type size from the active typography system.",
|
|
1015
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
820
1016
|
},
|
|
821
1017
|
{
|
|
822
1018
|
"const": "medium",
|
|
823
1019
|
"title": "Medium",
|
|
824
|
-
"description": "Use the standard type size from the active typography system."
|
|
1020
|
+
"description": "Use the standard type size from the active typography system.",
|
|
1021
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
825
1022
|
},
|
|
826
1023
|
{
|
|
827
1024
|
"const": "large",
|
|
828
1025
|
"title": "Large",
|
|
829
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
1026
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
1027
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
830
1028
|
},
|
|
831
1029
|
{
|
|
832
1030
|
"const": "xlarge",
|
|
833
1031
|
"title": "Extra large",
|
|
834
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
1032
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
1033
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
835
1034
|
}
|
|
836
1035
|
],
|
|
837
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1036
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
838
1037
|
},
|
|
839
1038
|
"lineHeight": {
|
|
840
1039
|
"type": "number",
|
|
841
1040
|
"minimum": 1,
|
|
842
1041
|
"maximum": 3,
|
|
843
|
-
"description": "Unitless line height between 1 and 3.",
|
|
844
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1042
|
+
"description": "Unitless heading line height between 1 and 3.",
|
|
1043
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n lineHeight: 1.5\n```\n\nUnitless heading line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
845
1044
|
},
|
|
846
1045
|
"weight": {
|
|
847
1046
|
"description": "Heading font weight. Omit this to keep the profile value.",
|
|
@@ -849,41 +1048,45 @@
|
|
|
849
1048
|
{
|
|
850
1049
|
"const": 400,
|
|
851
1050
|
"title": "Regular",
|
|
852
|
-
"description": "Use regular font weight."
|
|
1051
|
+
"description": "Use regular font weight.",
|
|
1052
|
+
"markdownDescription": "Use regular font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
853
1053
|
},
|
|
854
1054
|
{
|
|
855
1055
|
"const": 500,
|
|
856
1056
|
"title": "Medium",
|
|
857
|
-
"description": "Use medium font weight."
|
|
1057
|
+
"description": "Use medium font weight.",
|
|
1058
|
+
"markdownDescription": "Use medium font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
858
1059
|
},
|
|
859
1060
|
{
|
|
860
1061
|
"const": 600,
|
|
861
1062
|
"title": "Semibold",
|
|
862
|
-
"description": "Use semibold font weight."
|
|
1063
|
+
"description": "Use semibold font weight.",
|
|
1064
|
+
"markdownDescription": "Use semibold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
863
1065
|
},
|
|
864
1066
|
{
|
|
865
1067
|
"const": 700,
|
|
866
1068
|
"title": "Bold",
|
|
867
|
-
"description": "Use bold font weight."
|
|
1069
|
+
"description": "Use bold font weight.",
|
|
1070
|
+
"markdownDescription": "Use bold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
868
1071
|
}
|
|
869
1072
|
],
|
|
870
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1073
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
871
1074
|
},
|
|
872
1075
|
"spacingBefore": {
|
|
873
1076
|
"description": "Vertical space before the heading.",
|
|
874
1077
|
"type": "string",
|
|
875
1078
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
876
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1079
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
877
1080
|
},
|
|
878
1081
|
"spacingAfter": {
|
|
879
1082
|
"description": "Vertical space after the heading.",
|
|
880
1083
|
"type": "string",
|
|
881
1084
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
882
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1085
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
883
1086
|
}
|
|
884
1087
|
},
|
|
885
1088
|
"additionalProperties": false,
|
|
886
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n size: medium\n```\n\nOverrides for Markdown level 2 section headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1089
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n size: medium\n```\n\nOverrides for Markdown level 2 section headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
887
1090
|
},
|
|
888
1091
|
"h3": {
|
|
889
1092
|
"description": "Overrides for Markdown level 3 headings.",
|
|
@@ -900,20 +1103,23 @@
|
|
|
900
1103
|
{
|
|
901
1104
|
"const": "left",
|
|
902
1105
|
"title": "Left",
|
|
903
|
-
"description": "Align text with the left edge of its text area."
|
|
1106
|
+
"description": "Align text with the left edge of its text area.",
|
|
1107
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
904
1108
|
},
|
|
905
1109
|
{
|
|
906
1110
|
"const": "center",
|
|
907
1111
|
"title": "Center",
|
|
908
|
-
"description": "Center text within its text area."
|
|
1112
|
+
"description": "Center text within its text area.",
|
|
1113
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
909
1114
|
},
|
|
910
1115
|
{
|
|
911
1116
|
"const": "right",
|
|
912
1117
|
"title": "Right",
|
|
913
|
-
"description": "Align text with the right edge of its text area."
|
|
1118
|
+
"description": "Align text with the right edge of its text area.",
|
|
1119
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
914
1120
|
}
|
|
915
1121
|
],
|
|
916
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1122
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
917
1123
|
},
|
|
918
1124
|
"mobile": {
|
|
919
1125
|
"description": "Text alignment on narrow screens.",
|
|
@@ -922,28 +1128,31 @@
|
|
|
922
1128
|
{
|
|
923
1129
|
"const": "left",
|
|
924
1130
|
"title": "Left",
|
|
925
|
-
"description": "Align text with the left edge of its text area."
|
|
1131
|
+
"description": "Align text with the left edge of its text area.",
|
|
1132
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
926
1133
|
},
|
|
927
1134
|
{
|
|
928
1135
|
"const": "center",
|
|
929
1136
|
"title": "Center",
|
|
930
|
-
"description": "Center text within its text area."
|
|
1137
|
+
"description": "Center text within its text area.",
|
|
1138
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
931
1139
|
},
|
|
932
1140
|
{
|
|
933
1141
|
"const": "right",
|
|
934
1142
|
"title": "Right",
|
|
935
|
-
"description": "Align text with the right edge of its text area."
|
|
1143
|
+
"description": "Align text with the right edge of its text area.",
|
|
1144
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
936
1145
|
}
|
|
937
1146
|
],
|
|
938
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1147
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
939
1148
|
}
|
|
940
1149
|
},
|
|
941
1150
|
"additionalProperties": false,
|
|
942
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1151
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
943
1152
|
"defaultSnippets": [
|
|
944
1153
|
{
|
|
945
1154
|
"label": "Responsive text alignment",
|
|
946
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1155
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
947
1156
|
"body": {
|
|
948
1157
|
"desktop": "${1:left}",
|
|
949
1158
|
"mobile": "${2:left}"
|
|
@@ -958,32 +1167,36 @@
|
|
|
958
1167
|
{
|
|
959
1168
|
"const": "small",
|
|
960
1169
|
"title": "Small",
|
|
961
|
-
"description": "Use the small type size from the active typography system."
|
|
1170
|
+
"description": "Use the small type size from the active typography system.",
|
|
1171
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
962
1172
|
},
|
|
963
1173
|
{
|
|
964
1174
|
"const": "medium",
|
|
965
1175
|
"title": "Medium",
|
|
966
|
-
"description": "Use the standard type size from the active typography system."
|
|
1176
|
+
"description": "Use the standard type size from the active typography system.",
|
|
1177
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
967
1178
|
},
|
|
968
1179
|
{
|
|
969
1180
|
"const": "large",
|
|
970
1181
|
"title": "Large",
|
|
971
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
1182
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
1183
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
972
1184
|
},
|
|
973
1185
|
{
|
|
974
1186
|
"const": "xlarge",
|
|
975
1187
|
"title": "Extra large",
|
|
976
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
1188
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
1189
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
977
1190
|
}
|
|
978
1191
|
],
|
|
979
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1192
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
980
1193
|
},
|
|
981
1194
|
"lineHeight": {
|
|
982
1195
|
"type": "number",
|
|
983
1196
|
"minimum": 1,
|
|
984
1197
|
"maximum": 3,
|
|
985
|
-
"description": "Unitless line height between 1 and 3.",
|
|
986
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1198
|
+
"description": "Unitless heading line height between 1 and 3.",
|
|
1199
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n lineHeight: 1.5\n```\n\nUnitless heading line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
987
1200
|
},
|
|
988
1201
|
"weight": {
|
|
989
1202
|
"description": "Heading font weight. Omit this to keep the profile value.",
|
|
@@ -991,41 +1204,45 @@
|
|
|
991
1204
|
{
|
|
992
1205
|
"const": 400,
|
|
993
1206
|
"title": "Regular",
|
|
994
|
-
"description": "Use regular font weight."
|
|
1207
|
+
"description": "Use regular font weight.",
|
|
1208
|
+
"markdownDescription": "Use regular font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
995
1209
|
},
|
|
996
1210
|
{
|
|
997
1211
|
"const": 500,
|
|
998
1212
|
"title": "Medium",
|
|
999
|
-
"description": "Use medium font weight."
|
|
1213
|
+
"description": "Use medium font weight.",
|
|
1214
|
+
"markdownDescription": "Use medium font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1000
1215
|
},
|
|
1001
1216
|
{
|
|
1002
1217
|
"const": 600,
|
|
1003
1218
|
"title": "Semibold",
|
|
1004
|
-
"description": "Use semibold font weight."
|
|
1219
|
+
"description": "Use semibold font weight.",
|
|
1220
|
+
"markdownDescription": "Use semibold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1005
1221
|
},
|
|
1006
1222
|
{
|
|
1007
1223
|
"const": 700,
|
|
1008
1224
|
"title": "Bold",
|
|
1009
|
-
"description": "Use bold font weight."
|
|
1225
|
+
"description": "Use bold font weight.",
|
|
1226
|
+
"markdownDescription": "Use bold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1010
1227
|
}
|
|
1011
1228
|
],
|
|
1012
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1229
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1013
1230
|
},
|
|
1014
1231
|
"spacingBefore": {
|
|
1015
1232
|
"description": "Vertical space before the heading.",
|
|
1016
1233
|
"type": "string",
|
|
1017
1234
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1018
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1235
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1019
1236
|
},
|
|
1020
1237
|
"spacingAfter": {
|
|
1021
1238
|
"description": "Vertical space after the heading.",
|
|
1022
1239
|
"type": "string",
|
|
1023
1240
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1024
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1241
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1025
1242
|
}
|
|
1026
1243
|
},
|
|
1027
1244
|
"additionalProperties": false,
|
|
1028
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n size: medium\n```\n\nOverrides for Markdown level 3 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1245
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h3:\n size: medium\n```\n\nOverrides for Markdown level 3 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1029
1246
|
},
|
|
1030
1247
|
"h4": {
|
|
1031
1248
|
"description": "Overrides for Markdown level 4 headings.",
|
|
@@ -1042,20 +1259,23 @@
|
|
|
1042
1259
|
{
|
|
1043
1260
|
"const": "left",
|
|
1044
1261
|
"title": "Left",
|
|
1045
|
-
"description": "Align text with the left edge of its text area."
|
|
1262
|
+
"description": "Align text with the left edge of its text area.",
|
|
1263
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1046
1264
|
},
|
|
1047
1265
|
{
|
|
1048
1266
|
"const": "center",
|
|
1049
1267
|
"title": "Center",
|
|
1050
|
-
"description": "Center text within its text area."
|
|
1268
|
+
"description": "Center text within its text area.",
|
|
1269
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1051
1270
|
},
|
|
1052
1271
|
{
|
|
1053
1272
|
"const": "right",
|
|
1054
1273
|
"title": "Right",
|
|
1055
|
-
"description": "Align text with the right edge of its text area."
|
|
1274
|
+
"description": "Align text with the right edge of its text area.",
|
|
1275
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1056
1276
|
}
|
|
1057
1277
|
],
|
|
1058
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1278
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1059
1279
|
},
|
|
1060
1280
|
"mobile": {
|
|
1061
1281
|
"description": "Text alignment on narrow screens.",
|
|
@@ -1064,28 +1284,31 @@
|
|
|
1064
1284
|
{
|
|
1065
1285
|
"const": "left",
|
|
1066
1286
|
"title": "Left",
|
|
1067
|
-
"description": "Align text with the left edge of its text area."
|
|
1287
|
+
"description": "Align text with the left edge of its text area.",
|
|
1288
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1068
1289
|
},
|
|
1069
1290
|
{
|
|
1070
1291
|
"const": "center",
|
|
1071
1292
|
"title": "Center",
|
|
1072
|
-
"description": "Center text within its text area."
|
|
1293
|
+
"description": "Center text within its text area.",
|
|
1294
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1073
1295
|
},
|
|
1074
1296
|
{
|
|
1075
1297
|
"const": "right",
|
|
1076
1298
|
"title": "Right",
|
|
1077
|
-
"description": "Align text with the right edge of its text area."
|
|
1299
|
+
"description": "Align text with the right edge of its text area.",
|
|
1300
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1078
1301
|
}
|
|
1079
1302
|
],
|
|
1080
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1303
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1081
1304
|
}
|
|
1082
1305
|
},
|
|
1083
1306
|
"additionalProperties": false,
|
|
1084
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1307
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1085
1308
|
"defaultSnippets": [
|
|
1086
1309
|
{
|
|
1087
1310
|
"label": "Responsive text alignment",
|
|
1088
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1311
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1089
1312
|
"body": {
|
|
1090
1313
|
"desktop": "${1:left}",
|
|
1091
1314
|
"mobile": "${2:left}"
|
|
@@ -1100,32 +1323,36 @@
|
|
|
1100
1323
|
{
|
|
1101
1324
|
"const": "small",
|
|
1102
1325
|
"title": "Small",
|
|
1103
|
-
"description": "Use the small type size from the active typography system."
|
|
1326
|
+
"description": "Use the small type size from the active typography system.",
|
|
1327
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1104
1328
|
},
|
|
1105
1329
|
{
|
|
1106
1330
|
"const": "medium",
|
|
1107
1331
|
"title": "Medium",
|
|
1108
|
-
"description": "Use the standard type size from the active typography system."
|
|
1332
|
+
"description": "Use the standard type size from the active typography system.",
|
|
1333
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1109
1334
|
},
|
|
1110
1335
|
{
|
|
1111
1336
|
"const": "large",
|
|
1112
1337
|
"title": "Large",
|
|
1113
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
1338
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
1339
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1114
1340
|
},
|
|
1115
1341
|
{
|
|
1116
1342
|
"const": "xlarge",
|
|
1117
1343
|
"title": "Extra large",
|
|
1118
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
1344
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
1345
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1119
1346
|
}
|
|
1120
1347
|
],
|
|
1121
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1348
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1122
1349
|
},
|
|
1123
1350
|
"lineHeight": {
|
|
1124
1351
|
"type": "number",
|
|
1125
1352
|
"minimum": 1,
|
|
1126
1353
|
"maximum": 3,
|
|
1127
|
-
"description": "Unitless line height between 1 and 3.",
|
|
1128
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1354
|
+
"description": "Unitless heading line height between 1 and 3.",
|
|
1355
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n lineHeight: 1.5\n```\n\nUnitless heading line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1129
1356
|
},
|
|
1130
1357
|
"weight": {
|
|
1131
1358
|
"description": "Heading font weight. Omit this to keep the profile value.",
|
|
@@ -1133,45 +1360,49 @@
|
|
|
1133
1360
|
{
|
|
1134
1361
|
"const": 400,
|
|
1135
1362
|
"title": "Regular",
|
|
1136
|
-
"description": "Use regular font weight."
|
|
1363
|
+
"description": "Use regular font weight.",
|
|
1364
|
+
"markdownDescription": "Use regular font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1137
1365
|
},
|
|
1138
1366
|
{
|
|
1139
1367
|
"const": 500,
|
|
1140
1368
|
"title": "Medium",
|
|
1141
|
-
"description": "Use medium font weight."
|
|
1369
|
+
"description": "Use medium font weight.",
|
|
1370
|
+
"markdownDescription": "Use medium font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1142
1371
|
},
|
|
1143
1372
|
{
|
|
1144
1373
|
"const": 600,
|
|
1145
1374
|
"title": "Semibold",
|
|
1146
|
-
"description": "Use semibold font weight."
|
|
1375
|
+
"description": "Use semibold font weight.",
|
|
1376
|
+
"markdownDescription": "Use semibold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1147
1377
|
},
|
|
1148
1378
|
{
|
|
1149
1379
|
"const": 700,
|
|
1150
1380
|
"title": "Bold",
|
|
1151
|
-
"description": "Use bold font weight."
|
|
1381
|
+
"description": "Use bold font weight.",
|
|
1382
|
+
"markdownDescription": "Use bold font weight.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1152
1383
|
}
|
|
1153
1384
|
],
|
|
1154
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1385
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n weight: 600\n```\n\nHeading font weight. Omit this to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1155
1386
|
},
|
|
1156
1387
|
"spacingBefore": {
|
|
1157
1388
|
"description": "Vertical space before the heading.",
|
|
1158
1389
|
"type": "string",
|
|
1159
1390
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1160
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1391
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n spacingBefore: 1.5em\n```\n\nVertical space before the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1161
1392
|
},
|
|
1162
1393
|
"spacingAfter": {
|
|
1163
1394
|
"description": "Vertical space after the heading.",
|
|
1164
1395
|
"type": "string",
|
|
1165
1396
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1166
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1397
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n \n spacingAfter: 0.5em\n```\n\nVertical space after the heading.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1167
1398
|
}
|
|
1168
1399
|
},
|
|
1169
1400
|
"additionalProperties": false,
|
|
1170
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n size: medium\n```\n\nOverrides for Markdown level 4 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1401
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h4:\n size: medium\n```\n\nOverrides for Markdown level 4 headings.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1171
1402
|
}
|
|
1172
1403
|
},
|
|
1173
1404
|
"additionalProperties": false,
|
|
1174
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n size: medium\n```\n\nOverrides for heading levels.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1405
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n headings:\n h2:\n size: medium\n```\n\nOverrides for heading levels.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1175
1406
|
},
|
|
1176
1407
|
"body": {
|
|
1177
1408
|
"description": "Overrides for body text.",
|
|
@@ -1188,20 +1419,23 @@
|
|
|
1188
1419
|
{
|
|
1189
1420
|
"const": "left",
|
|
1190
1421
|
"title": "Left",
|
|
1191
|
-
"description": "Align text with the left edge of its text area."
|
|
1422
|
+
"description": "Align text with the left edge of its text area.",
|
|
1423
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1192
1424
|
},
|
|
1193
1425
|
{
|
|
1194
1426
|
"const": "center",
|
|
1195
1427
|
"title": "Center",
|
|
1196
|
-
"description": "Center text within its text area."
|
|
1428
|
+
"description": "Center text within its text area.",
|
|
1429
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1197
1430
|
},
|
|
1198
1431
|
{
|
|
1199
1432
|
"const": "right",
|
|
1200
1433
|
"title": "Right",
|
|
1201
|
-
"description": "Align text with the right edge of its text area."
|
|
1434
|
+
"description": "Align text with the right edge of its text area.",
|
|
1435
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1202
1436
|
}
|
|
1203
1437
|
],
|
|
1204
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1438
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1205
1439
|
},
|
|
1206
1440
|
"mobile": {
|
|
1207
1441
|
"description": "Text alignment on narrow screens.",
|
|
@@ -1210,28 +1444,31 @@
|
|
|
1210
1444
|
{
|
|
1211
1445
|
"const": "left",
|
|
1212
1446
|
"title": "Left",
|
|
1213
|
-
"description": "Align text with the left edge of its text area."
|
|
1447
|
+
"description": "Align text with the left edge of its text area.",
|
|
1448
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1214
1449
|
},
|
|
1215
1450
|
{
|
|
1216
1451
|
"const": "center",
|
|
1217
1452
|
"title": "Center",
|
|
1218
|
-
"description": "Center text within its text area."
|
|
1453
|
+
"description": "Center text within its text area.",
|
|
1454
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1219
1455
|
},
|
|
1220
1456
|
{
|
|
1221
1457
|
"const": "right",
|
|
1222
1458
|
"title": "Right",
|
|
1223
|
-
"description": "Align text with the right edge of its text area."
|
|
1459
|
+
"description": "Align text with the right edge of its text area.",
|
|
1460
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1224
1461
|
}
|
|
1225
1462
|
],
|
|
1226
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1463
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1227
1464
|
}
|
|
1228
1465
|
},
|
|
1229
1466
|
"additionalProperties": false,
|
|
1230
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1467
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1231
1468
|
"defaultSnippets": [
|
|
1232
1469
|
{
|
|
1233
1470
|
"label": "Responsive text alignment",
|
|
1234
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1471
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1235
1472
|
"body": {
|
|
1236
1473
|
"desktop": "${1:left}",
|
|
1237
1474
|
"mobile": "${2:left}"
|
|
@@ -1246,42 +1483,46 @@
|
|
|
1246
1483
|
{
|
|
1247
1484
|
"const": "small",
|
|
1248
1485
|
"title": "Small",
|
|
1249
|
-
"description": "Use the small type size from the active typography system."
|
|
1486
|
+
"description": "Use the small type size from the active typography system.",
|
|
1487
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1250
1488
|
},
|
|
1251
1489
|
{
|
|
1252
1490
|
"const": "medium",
|
|
1253
1491
|
"title": "Medium",
|
|
1254
|
-
"description": "Use the standard type size from the active typography system."
|
|
1492
|
+
"description": "Use the standard type size from the active typography system.",
|
|
1493
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1255
1494
|
},
|
|
1256
1495
|
{
|
|
1257
1496
|
"const": "large",
|
|
1258
1497
|
"title": "Large",
|
|
1259
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
1498
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
1499
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1260
1500
|
},
|
|
1261
1501
|
{
|
|
1262
1502
|
"const": "xlarge",
|
|
1263
1503
|
"title": "Extra large",
|
|
1264
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
1504
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
1505
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1265
1506
|
}
|
|
1266
1507
|
],
|
|
1267
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1508
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1268
1509
|
},
|
|
1269
1510
|
"lineHeight": {
|
|
1270
1511
|
"type": "number",
|
|
1271
|
-
"minimum": 1,
|
|
1512
|
+
"minimum": 1.4,
|
|
1272
1513
|
"maximum": 3,
|
|
1273
|
-
"description": "Unitless line height between 1 and 3.",
|
|
1274
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1514
|
+
"description": "Unitless body-text line height between 1.4 and 3.",
|
|
1515
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.5\n```\n\nUnitless body-text line height between 1.4 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1275
1516
|
},
|
|
1276
1517
|
"paragraphSpacing": {
|
|
1277
1518
|
"description": "Vertical space between body paragraphs.",
|
|
1278
1519
|
"type": "string",
|
|
1279
1520
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1280
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n paragraphSpacing: 1em\n```\n\nVertical space between body paragraphs.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1521
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n paragraphSpacing: 1em\n```\n\nVertical space between body paragraphs.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1281
1522
|
}
|
|
1282
1523
|
},
|
|
1283
1524
|
"additionalProperties": false,
|
|
1284
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.55\n```\n\nOverrides for body text.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1525
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.55\n```\n\nOverrides for body text.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1285
1526
|
},
|
|
1286
1527
|
"caption": {
|
|
1287
1528
|
"description": "Overrides for image captions.",
|
|
@@ -1298,20 +1539,23 @@
|
|
|
1298
1539
|
{
|
|
1299
1540
|
"const": "left",
|
|
1300
1541
|
"title": "Left",
|
|
1301
|
-
"description": "Align text with the left edge of its text area."
|
|
1542
|
+
"description": "Align text with the left edge of its text area.",
|
|
1543
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1302
1544
|
},
|
|
1303
1545
|
{
|
|
1304
1546
|
"const": "center",
|
|
1305
1547
|
"title": "Center",
|
|
1306
|
-
"description": "Center text within its text area."
|
|
1548
|
+
"description": "Center text within its text area.",
|
|
1549
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1307
1550
|
},
|
|
1308
1551
|
{
|
|
1309
1552
|
"const": "right",
|
|
1310
1553
|
"title": "Right",
|
|
1311
|
-
"description": "Align text with the right edge of its text area."
|
|
1554
|
+
"description": "Align text with the right edge of its text area.",
|
|
1555
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1312
1556
|
}
|
|
1313
1557
|
],
|
|
1314
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1558
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n desktop: left\n```\n\nText alignment on wider screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1315
1559
|
},
|
|
1316
1560
|
"mobile": {
|
|
1317
1561
|
"description": "Text alignment on narrow screens.",
|
|
@@ -1320,28 +1564,31 @@
|
|
|
1320
1564
|
{
|
|
1321
1565
|
"const": "left",
|
|
1322
1566
|
"title": "Left",
|
|
1323
|
-
"description": "Align text with the left edge of its text area."
|
|
1567
|
+
"description": "Align text with the left edge of its text area.",
|
|
1568
|
+
"markdownDescription": "Align text with the left edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1324
1569
|
},
|
|
1325
1570
|
{
|
|
1326
1571
|
"const": "center",
|
|
1327
1572
|
"title": "Center",
|
|
1328
|
-
"description": "Center text within its text area."
|
|
1573
|
+
"description": "Center text within its text area.",
|
|
1574
|
+
"markdownDescription": "Center text within its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1329
1575
|
},
|
|
1330
1576
|
{
|
|
1331
1577
|
"const": "right",
|
|
1332
1578
|
"title": "Right",
|
|
1333
|
-
"description": "Align text with the right edge of its text area."
|
|
1579
|
+
"description": "Align text with the right edge of its text area.",
|
|
1580
|
+
"markdownDescription": "Align text with the right edge of its text area.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1334
1581
|
}
|
|
1335
1582
|
],
|
|
1336
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1583
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n mobile: left\n```\n\nText alignment on narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1337
1584
|
}
|
|
1338
1585
|
},
|
|
1339
1586
|
"additionalProperties": false,
|
|
1340
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1587
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n align:\n desktop: left\n mobile: left\n```\n\nResponsive text alignment override.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1341
1588
|
"defaultSnippets": [
|
|
1342
1589
|
{
|
|
1343
1590
|
"label": "Responsive text alignment",
|
|
1344
|
-
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1591
|
+
"markdownDescription": "Set separate text alignment for wider and narrow screens.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1345
1592
|
"body": {
|
|
1346
1593
|
"desktop": "${1:left}",
|
|
1347
1594
|
"mobile": "${2:left}"
|
|
@@ -1356,50 +1603,54 @@
|
|
|
1356
1603
|
{
|
|
1357
1604
|
"const": "small",
|
|
1358
1605
|
"title": "Small",
|
|
1359
|
-
"description": "Use the small type size from the active typography system."
|
|
1606
|
+
"description": "Use the small type size from the active typography system.",
|
|
1607
|
+
"markdownDescription": "Use the small type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1360
1608
|
},
|
|
1361
1609
|
{
|
|
1362
1610
|
"const": "medium",
|
|
1363
1611
|
"title": "Medium",
|
|
1364
|
-
"description": "Use the standard type size from the active typography system."
|
|
1612
|
+
"description": "Use the standard type size from the active typography system.",
|
|
1613
|
+
"markdownDescription": "Use the standard type size from the active typography system.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1365
1614
|
},
|
|
1366
1615
|
{
|
|
1367
1616
|
"const": "large",
|
|
1368
1617
|
"title": "Large",
|
|
1369
|
-
"description": "Use a larger type size for stronger emphasis."
|
|
1618
|
+
"description": "Use a larger type size for stronger emphasis.",
|
|
1619
|
+
"markdownDescription": "Use a larger type size for stronger emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1370
1620
|
},
|
|
1371
1621
|
{
|
|
1372
1622
|
"const": "xlarge",
|
|
1373
1623
|
"title": "Extra large",
|
|
1374
|
-
"description": "Use the largest available type size for exceptional emphasis."
|
|
1624
|
+
"description": "Use the largest available type size for exceptional emphasis.",
|
|
1625
|
+
"markdownDescription": "Use the largest available type size for exceptional emphasis.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1375
1626
|
}
|
|
1376
1627
|
],
|
|
1377
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1628
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n size: medium\n```\n\nText size from the active typography system. Omit an override to keep the profile value.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1378
1629
|
},
|
|
1379
1630
|
"lineHeight": {
|
|
1380
1631
|
"type": "number",
|
|
1381
|
-
"minimum": 1,
|
|
1632
|
+
"minimum": 1.25,
|
|
1382
1633
|
"maximum": 3,
|
|
1383
|
-
"description": "Unitless line height between 1 and 3.",
|
|
1384
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n lineHeight: 1.5\n```\n\nUnitless line height between 1 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1634
|
+
"description": "Unitless caption line height between 1.25 and 3.",
|
|
1635
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n lineHeight: 1.5\n```\n\nUnitless caption line height between 1.25 and 3.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1385
1636
|
},
|
|
1386
1637
|
"spacingBefore": {
|
|
1387
1638
|
"description": "Vertical space between an image and its caption.",
|
|
1388
1639
|
"type": "string",
|
|
1389
1640
|
"pattern": "^(?:0|(?:\\d+(?:\\.\\d+)?|\\.\\d+)(?:px|rem|em|ch|lh))$",
|
|
1390
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n spacingBefore: 0.5em\n```\n\nVertical space between an image and its caption.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1641
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n spacingBefore: 0.5em\n```\n\nVertical space between an image and its caption.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1391
1642
|
}
|
|
1392
1643
|
},
|
|
1393
1644
|
"additionalProperties": false,
|
|
1394
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n size: small\n```\n\nOverrides for image captions.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1645
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n caption:\n size: small\n```\n\nOverrides for image captions.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1395
1646
|
}
|
|
1396
1647
|
},
|
|
1397
1648
|
"additionalProperties": false,
|
|
1398
|
-
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.55\n```\n\nFocused typography overrides applied after the profile.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1649
|
+
"markdownDescription": "```yaml\ntypography:\n overrides:\n body:\n lineHeight: 1.55\n```\n\nFocused typography overrides applied after the profile.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1399
1650
|
"defaultSnippets": [
|
|
1400
1651
|
{
|
|
1401
1652
|
"label": "Typography overrides",
|
|
1402
|
-
"markdownDescription": "Start a focused set of heading and body-text overrides.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.
|
|
1653
|
+
"markdownDescription": "Start a focused set of heading and body-text overrides.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)",
|
|
1403
1654
|
"body": {
|
|
1404
1655
|
"headings": {
|
|
1405
1656
|
"h2": {
|
|
@@ -1417,74 +1668,122 @@
|
|
|
1417
1668
|
},
|
|
1418
1669
|
"additionalProperties": false,
|
|
1419
1670
|
"description": "Typography profile, rhythm, font family, and focused overrides.",
|
|
1420
|
-
"markdownDescription": "```yaml\ntypography:\n profile: reading\n rhythm: normal\n```\n\nOverrides the preset's font stack, typography profile, rhythm or individual text settings.\n\n[Typography configuration reference](https://github.com/janga/norna/blob/v0.7.
|
|
1671
|
+
"markdownDescription": "```yaml\ntypography:\n profile: reading\n rhythm: normal\n```\n\nOverrides the preset's font stack, typography profile, rhythm or individual text settings.\n\n[Typography configuration reference](https://github.com/janga/norna/blob/v0.7.23/docs/typography.md#configuration-shape)"
|
|
1421
1672
|
},
|
|
1422
1673
|
"palette": {
|
|
1423
1674
|
"type": "string",
|
|
1424
|
-
"description": "Coordinated site color palette. Omit this to use the selected preset.",
|
|
1675
|
+
"description": "Coordinated site color palette. Every palette provides light and dark variants. Omit this to use the selected preset.",
|
|
1425
1676
|
"oneOf": [
|
|
1426
1677
|
{
|
|
1427
|
-
"const": "
|
|
1428
|
-
"title": "
|
|
1429
|
-
"description": "
|
|
1678
|
+
"const": "near-monochrome",
|
|
1679
|
+
"title": "Near monochrome",
|
|
1680
|
+
"description": "Neutral grays and off-whites with almost no visible hue. Includes coordinated light and dark variants.",
|
|
1681
|
+
"markdownDescription": "Neutral grays and off-whites with almost no visible hue. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"const": "warm-paper",
|
|
1685
|
+
"title": "Warm paper",
|
|
1686
|
+
"description": "Warm off-whites and browns resembling paper and ink. Includes coordinated light and dark variants.",
|
|
1687
|
+
"markdownDescription": "Warm off-whites and browns resembling paper and ink. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"const": "retro-earth",
|
|
1691
|
+
"title": "Retro earth",
|
|
1692
|
+
"description": "Earthy ochres, olives and warm neutrals with a subdued retro character. Includes coordinated light and dark variants.",
|
|
1693
|
+
"markdownDescription": "Earthy ochres, olives and warm neutrals with a subdued retro character. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"const": "clay-rose",
|
|
1697
|
+
"title": "Clay rose",
|
|
1698
|
+
"description": "Muted clay, rose and wine tones with a warm editorial character. Includes coordinated light and dark variants.",
|
|
1699
|
+
"markdownDescription": "Muted clay, rose and wine tones with a warm editorial character. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"const": "forest-moss",
|
|
1703
|
+
"title": "Forest moss",
|
|
1704
|
+
"description": "Botanical greens, mossy surfaces and warm lichen neutrals. Includes coordinated light and dark variants.",
|
|
1705
|
+
"markdownDescription": "Botanical greens, mossy surfaces and warm lichen neutrals. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"const": "mineral-teal",
|
|
1709
|
+
"title": "Mineral teal",
|
|
1710
|
+
"description": "Cool mineral greens with muted teal accents and pale aqua-gray surfaces. Includes coordinated light and dark variants.",
|
|
1711
|
+
"markdownDescription": "Cool mineral greens with muted teal accents and pale aqua-gray surfaces. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"const": "arctic-blue",
|
|
1715
|
+
"title": "Arctic blue",
|
|
1716
|
+
"description": "Cool blue-gray surfaces with clear, restrained blue accents. Includes coordinated light and dark variants.",
|
|
1717
|
+
"markdownDescription": "Cool blue-gray surfaces with clear, restrained blue accents. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1430
1718
|
},
|
|
1431
1719
|
{
|
|
1432
|
-
"const": "
|
|
1433
|
-
"title": "
|
|
1434
|
-
"description": "
|
|
1720
|
+
"const": "soft-lavender",
|
|
1721
|
+
"title": "Soft lavender",
|
|
1722
|
+
"description": "Quiet lavender surfaces with low-key mauve accents. Includes coordinated light and dark variants.",
|
|
1723
|
+
"markdownDescription": "Quiet lavender surfaces with low-key mauve accents. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1435
1724
|
},
|
|
1436
1725
|
{
|
|
1437
|
-
"const": "
|
|
1438
|
-
"title": "
|
|
1439
|
-
"description": "
|
|
1726
|
+
"const": "vivid-night",
|
|
1727
|
+
"title": "Vivid night",
|
|
1728
|
+
"description": "Indigo surfaces with a brighter cyan accent and a dark-first character. Includes coordinated light and dark variants.",
|
|
1729
|
+
"markdownDescription": "Indigo surfaces with a brighter cyan accent and a dark-first character. Includes coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)"
|
|
1440
1730
|
}
|
|
1441
1731
|
],
|
|
1442
|
-
"markdownDescription": "```yaml\npalette: paper\n```\n\nChooses
|
|
1732
|
+
"markdownDescription": "```yaml\npalette: warm-paper\n```\n\nChooses the site color character. Every palette provides coordinated light and dark variants.\n\n[Palette and appearance](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#palette-and-appearance)",
|
|
1443
1733
|
"examples": [
|
|
1444
|
-
"
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
1734
|
+
"near-monochrome",
|
|
1735
|
+
"warm-paper",
|
|
1736
|
+
"retro-earth",
|
|
1737
|
+
"clay-rose",
|
|
1738
|
+
"forest-moss",
|
|
1739
|
+
"mineral-teal",
|
|
1740
|
+
"arctic-blue",
|
|
1741
|
+
"soft-lavender",
|
|
1742
|
+
"vivid-night"
|
|
1447
1743
|
]
|
|
1448
1744
|
},
|
|
1449
1745
|
"sections": {
|
|
1450
1746
|
"type": "object",
|
|
1451
1747
|
"properties": {
|
|
1452
1748
|
"backgroundPattern": {
|
|
1453
|
-
"description": "Section background
|
|
1749
|
+
"description": "Section background pattern. Alternating and accented create full-width bands with sections or top navigation; tree navigation requires uniform.",
|
|
1454
1750
|
"type": "string",
|
|
1455
1751
|
"oneOf": [
|
|
1456
1752
|
{
|
|
1457
1753
|
"const": "uniform",
|
|
1458
1754
|
"title": "Uniform",
|
|
1459
|
-
"description": "Use the
|
|
1755
|
+
"description": "Use the normal page background for every H2 section. Tree navigation requires this pattern.",
|
|
1756
|
+
"markdownDescription": "Use the normal page background for every H2 section. Tree navigation requires this pattern.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#section-backgrounds)"
|
|
1460
1757
|
},
|
|
1461
1758
|
{
|
|
1462
1759
|
"const": "alternating",
|
|
1463
1760
|
"title": "Alternating",
|
|
1464
|
-
"description": "Alternate
|
|
1761
|
+
"description": "Alternate normal and subtly contrasting full-width section backgrounds. Available with sections and top navigation.",
|
|
1762
|
+
"markdownDescription": "Alternate normal and subtly contrasting full-width section backgrounds. Available with sections and top navigation.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#section-backgrounds)"
|
|
1465
1763
|
},
|
|
1466
1764
|
{
|
|
1467
|
-
"const": "
|
|
1468
|
-
"title": "
|
|
1469
|
-
"description": "
|
|
1765
|
+
"const": "accented",
|
|
1766
|
+
"title": "Accented",
|
|
1767
|
+
"description": "Move through base, soft, emphasis and soft full-width section backgrounds before repeating. Available with sections and top navigation.",
|
|
1768
|
+
"markdownDescription": "Move through base, soft, emphasis and soft full-width section backgrounds before repeating. Available with sections and top navigation.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#section-backgrounds)"
|
|
1470
1769
|
}
|
|
1471
1770
|
],
|
|
1472
|
-
"markdownDescription": "```yaml\nsections:\n backgroundPattern: alternating\n```\n\nSection background
|
|
1771
|
+
"markdownDescription": "```yaml\nsections:\n backgroundPattern: alternating\n```\n\nSection background pattern. Alternating and accented create full-width bands with sections or top navigation; tree navigation requires uniform.\n\n[Read the relevant reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#section-backgrounds)",
|
|
1473
1772
|
"examples": [
|
|
1474
1773
|
"uniform",
|
|
1475
1774
|
"alternating",
|
|
1476
|
-
"
|
|
1775
|
+
"accented"
|
|
1477
1776
|
]
|
|
1478
1777
|
}
|
|
1479
1778
|
},
|
|
1480
1779
|
"additionalProperties": false,
|
|
1481
1780
|
"description": "Defaults for page section presentation.",
|
|
1482
|
-
"markdownDescription": "```yaml\nsections:\n backgroundPattern: alternating\n```\n\nChooses whether section backgrounds stay uniform, alternate between two
|
|
1781
|
+
"markdownDescription": "```yaml\nsections:\n backgroundPattern: alternating\n```\n\nChooses whether H2 section backgrounds stay uniform, alternate between two backgrounds or move from base to soft to emphasis and back through soft. Non-uniform patterns are available with sections and top navigation; tree navigation requires uniform.\n\n[Section backgrounds](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md#section-backgrounds)"
|
|
1483
1782
|
}
|
|
1484
1783
|
},
|
|
1485
1784
|
"additionalProperties": false,
|
|
1486
1785
|
"description": "Site-wide visual identity and default page presentation. Presets may be selected only in the root theme.",
|
|
1487
1786
|
"$id": "https://janga.github.io/norna/schemas/theme.schema.json",
|
|
1488
1787
|
"title": "Norna visual theme",
|
|
1489
|
-
"markdownDescription": "```yaml\npreset: documentation\n```\n\nChoose one complete preset first. Add focused overrides only when the site needs to differ from it.\n\n[Theme reference](https://github.com/janga/norna/blob/v0.7.
|
|
1788
|
+
"markdownDescription": "```yaml\npreset: documentation\n```\n\nChoose one complete preset first. Add focused overrides only when the site needs to differ from it.\n\n[Theme reference](https://github.com/janga/norna/blob/v0.7.23/docs/theme.md)"
|
|
1490
1789
|
}
|