diff --git a/docs/reference/index.md b/docs/reference/index.md index 3fb163a50e..bb3465a31e 100644 --- a/docs/reference/index.md +++ b/docs/reference/index.md @@ -1,5 +1,9 @@ --- id: intro +tags: + - reference + - user-facing + --- # API References & Blueprints diff --git a/docs/reference/italic-fonts.md b/docs/reference/italic-fonts.md index ef014d76fd..b6e8a2239c 100644 --- a/docs/reference/italic-fonts.md +++ b/docs/reference/italic-fonts.md @@ -1,3 +1,13 @@ +--- +title: Italic Fonts +format: md +tags: + - reference + - user-facing + - typography + - fonts +--- + # Italic Fonts This document provides a comprehensive reference table of real-world font examples organized by italic detection scenarios. Each scenario represents a different way that font families can implement italic styles, from traditional static fonts to modern variable fonts with complex axis configurations. diff --git a/docs/reference/italic.md b/docs/reference/italic.md index 680c548d1d..4aebaa06a3 100644 --- a/docs/reference/italic.md +++ b/docs/reference/italic.md @@ -1,3 +1,13 @@ +--- +title: Italic (and Oblique Model Design) +format: md +tags: + - reference + - user-facing + - typography + - fonts +--- + # Italic (and Oblique Model Design) This document provides an in-depth technical analysis of italic and oblique styles in digital typography, focusing on font metadata specifications, rendering engine implementations, platform-specific behaviors, design tool capabilities, multilingual considerations, and user experience design. diff --git a/docs/reference/open-type-features.md b/docs/reference/open-type-features.md index 10412d7cc6..29a99ee94a 100644 --- a/docs/reference/open-type-features.md +++ b/docs/reference/open-type-features.md @@ -1,3 +1,13 @@ +--- +title: OpenType Features Reference +format: md +tags: + - reference + - user-facing + - typography + - open-type +--- + # OpenType Features Reference This document provides a comprehensive reference for OpenType features based on the [Microsoft OpenType specification](https://learn.microsoft.com/en-us/typography/opentype/spec/featurelist). diff --git a/docs/reference/open-type-script-tags.md b/docs/reference/open-type-script-tags.md index 8ace1d7b35..9bd2384475 100644 --- a/docs/reference/open-type-script-tags.md +++ b/docs/reference/open-type-script-tags.md @@ -1,3 +1,13 @@ +--- +title: OpenType Script Tags +format: md +tags: + - reference + - user-facing + - typography + - open-type +--- + # OpenType Script Tags OpenType script tags are standardized four-letter identifiers used within the OpenType font specification to represent writing systems (scripts) such as Latin, Cyrillic, Han, Arabic, and others. These tags are embedded in font tables—specifically GSUB (Glyph Substitution) and GPOS (Glyph Positioning)—to enable advanced text layout and shaping according to the typographic and linguistic rules of each script. Script tags allow layout engines to apply the correct features and substitutions for each script encountered in text. diff --git a/docs/reference/open-type-variable-axes.md b/docs/reference/open-type-variable-axes.md index a04f470513..9598b085dd 100644 --- a/docs/reference/open-type-variable-axes.md +++ b/docs/reference/open-type-variable-axes.md @@ -1,3 +1,13 @@ +--- +title: Open Type Variable Axes Reference +format: md +tags: + - reference + - user-facing + - typography + - open-type +--- + # Open Type Variable Axes Reference ## Overview diff --git a/docs/tags.yml b/docs/tags.yml new file mode 100644 index 0000000000..3880e05e9c --- /dev/null +++ b/docs/tags.yml @@ -0,0 +1,182 @@ +# Docusaurus docs tags — shared vocabulary for navigation, search, and RAG chunking. +# Keys are referenced from doc frontmatter (`tags: [key, ...]`). + +internal: + label: Internal + permalink: /internal + description: Engineering and WG material for Grida builders (not end-user product guides). + +user-facing: + label: User-facing + permalink: /user-facing + description: Documentation intended for product users, integrators, and doc authors consuming stable references. + +reference: + label: Reference + permalink: /reference + description: Stable technical reference tables, glossaries, and specifications. + +wg: + label: WG + permalink: /wg + description: Working group notes, feature specs, and implementation plans. + +research: + label: Research + permalink: /research + description: Upstream research and deep dives (e.g. browser engine internals) informing design decisions. + +platform: + label: Platform + permalink: /platform + description: Multi-tenant platform, routing, domains, and edge operations. + +infra: + label: Infra + permalink: /infra + description: Hosting, DNS, edge configuration, and operational architecture. + +routing: + label: Routing + permalink: /routing + description: URL models, universal routes, and navigation contracts. + +historical: + label: Historical + permalink: /historical + description: Archived snapshots kept for audit trails; may not reflect current behavior. + +canvas: + label: Canvas + permalink: /canvas + description: Grida Canvas engine, 2D graphics, WASM runtime, and scene graph concerns. + +svg: + label: SVG + permalink: /svg + description: SVG import, parsing, and SVG-aligned rendering behavior. + +vector: + label: Vector + permalink: /vector + description: Paths, vector networks, curve geometry, and vector editing. + +rendering: + label: Rendering + permalink: /rendering + description: Rasterization, paints, opacity, blend modes, and draw pipelines. + +painting: + label: Painting + permalink: /painting + description: Fills, strokes, noise, patterns, and paint servers. + +performance: + label: Performance + permalink: /performance + description: Culling, caching, tiling, budgets, hashing, and throughput. + +testing: + label: Testing + permalink: /testing + description: Test methodology, suites, reftests, and QA strategy. + +typography: + label: Typography + permalink: /typography + description: Fonts, shaping, OpenType, variable axes, and text layout. + +text: + label: Text + permalink: /text + description: Rich text, attributed strings, editing model, and persistence. + +fonts: + label: Fonts + permalink: /fonts + description: Font loading, fallback, italic/oblique behavior, and font resources. + +open-type: + label: OpenType + permalink: /open-type + description: OpenType layout features, tags, and font table references. + +editor: + label: Editor + permalink: /editor + description: Editor UX, tools, selection, and authoring surfaces. + +authoring: + label: Authoring + permalink: /authoring + description: Parametric design, scaling, and author-side workflows. + +layout: + label: Layout + permalink: /layout + description: Auto-layout, constraints, and spatial composition. + +figma: + label: Figma + permalink: /figma + description: Figma interchange, Kiwi format, and import pipelines. + +import: + label: Import + permalink: /import + description: Bringing external formats into Grida (SVG, Figma, assets). + +format-schema: + label: Format & schema + permalink: /format-schema + description: .grida file format, naming, serialization, and schema evolution. + +resources: + label: Resources + permalink: /resources + description: Images, blobs, byte stores, and resource identity. + +wasm: + label: WASM + permalink: /wasm + description: WebAssembly constraints and browser-hosted engine concerns. + +masks: + label: Masks + permalink: /masks + description: Masking, clips, and matte operations. + +filters: + label: Filters + permalink: /filters + description: Image filters and visual effects. + +ai: + label: AI + permalink: /ai + description: Assistant tools, model-facing operations, and AI UX. + +collaboration: + label: Collaboration + permalink: /collaboration + description: CRDTs, identity, and multi-user consistency. + +css: + label: CSS + permalink: /css + description: CSS properties, web styling alignment, and design-to-code mapping. + +icu: + label: ICU + permalink: /icu + description: ICU, Unicode, locale-aware text, and cross-script behavior. + +chromium: + label: Chromium + permalink: /chromium + description: Chromium / Blink / cc compositor source research notes. + +compositing: + label: Compositing + permalink: /compositing + description: Layers, surfaces, tiles, and GPU composition. diff --git a/docs/wg/feat-2d/curve-decoration.md b/docs/wg/feat-2d/curve-decoration.md index 98868bcae0..f495f59afb 100644 --- a/docs/wg/feat-2d/curve-decoration.md +++ b/docs/wg/feat-2d/curve-decoration.md @@ -1,5 +1,12 @@ --- title: Curve Decorations (2D) +tags: + - internal + - wg + - canvas + - vector + - rendering + --- # Curve Decorations (2D) diff --git a/docs/wg/feat-2d/investigation-viewport-culling.md b/docs/wg/feat-2d/investigation-viewport-culling.md index 6b125d95fa..61de2bc3fd 100644 --- a/docs/wg/feat-2d/investigation-viewport-culling.md +++ b/docs/wg/feat-2d/investigation-viewport-culling.md @@ -2,6 +2,13 @@ title: "Investigation: Viewport Culling & Camera Caching" status: rejected date: 2026-03-22 +tags: + - internal + - wg + - canvas + - performance + - rendering + --- # Investigation: Viewport Culling & Camera Caching diff --git a/docs/wg/feat-2d/optimization.md b/docs/wg/feat-2d/optimization.md index 2f72585a84..97af0a61e6 100644 --- a/docs/wg/feat-2d/optimization.md +++ b/docs/wg/feat-2d/optimization.md @@ -1,5 +1,12 @@ --- title: Rendering Optimization Strategies +tags: + - internal + - wg + - canvas + - performance + - rendering + --- # Rendering Optimization Strategies diff --git a/docs/wg/feat-2d/stroke-fill-opacity.md b/docs/wg/feat-2d/stroke-fill-opacity.md index 2bf33afa15..5d6cf24e89 100644 --- a/docs/wg/feat-2d/stroke-fill-opacity.md +++ b/docs/wg/feat-2d/stroke-fill-opacity.md @@ -1,5 +1,11 @@ --- title: "Stroke-Fill Opacity Compositing" +tags: + - internal + - wg + - canvas + - rendering + --- # Stroke-Fill Opacity Compositing diff --git a/docs/wg/feat-ai/tools-image.md b/docs/wg/feat-ai/tools-image.md index 088e2f674e..5729c330e7 100644 --- a/docs/wg/feat-ai/tools-image.md +++ b/docs/wg/feat-ai/tools-image.md @@ -1,3 +1,12 @@ +--- +title: Image Tools (for AI) +tags: + - internal + - wg + - ai + - editor +--- + # Image Tools (for AI) This document proposes the philosophical basis for image manipulation tools that enable AI agents to generate, enhance, and transform visual content within the design canvas. diff --git a/docs/wg/feat-ai/tools.md b/docs/wg/feat-ai/tools.md index 90decd566e..383538dc79 100644 --- a/docs/wg/feat-ai/tools.md +++ b/docs/wg/feat-ai/tools.md @@ -1,3 +1,12 @@ +--- +title: Fundamental Tools (for AI) +tags: + - internal + - wg + - ai + - editor +--- + # Fundamental Tools (for AI) This document proposes the philosophical basis for the fundamental toolset, enabling machines to design like humans. diff --git a/docs/wg/feat-authoring/index.md b/docs/wg/feat-authoring/index.md index 9d3aa7593f..33991e513a 100644 --- a/docs/wg/feat-authoring/index.md +++ b/docs/wg/feat-authoring/index.md @@ -1,5 +1,11 @@ --- title: Authoring (WG) +tags: + - internal + - wg + - editor + - authoring + --- Authoring features are a collection of **authoring-time** behaviors in the editor: operations that **rewrite node parameters** to achieve an intended visual result, rather than relying on runtime transforms or renderer-specific tricks. diff --git a/docs/wg/feat-authoring/parametric-scaling.md b/docs/wg/feat-authoring/parametric-scaling.md index 47fc95b587..4966f7bd74 100644 --- a/docs/wg/feat-authoring/parametric-scaling.md +++ b/docs/wg/feat-authoring/parametric-scaling.md @@ -1,5 +1,11 @@ --- title: Scale tool (K) — parameter-space scaling (A.k.a Apply Scale or K-Scale) +tags: + - internal + - wg + - editor + - authoring + --- | feature id | status | description | PRs | diff --git a/docs/wg/feat-crdt/id.md b/docs/wg/feat-crdt/id.md index fd0043ce00..483cb0dded 100644 --- a/docs/wg/feat-crdt/id.md +++ b/docs/wg/feat-crdt/id.md @@ -1,6 +1,11 @@ --- title: CRDT Object ID Model description: A working group draft describing the Grida ID Model (for CRDT) feature for the core engine. +tags: + - internal + - wg + - collaboration + --- # Grida ID Model (for CRDT) diff --git a/docs/wg/feat-css/glossary/css_properties.json5.md b/docs/wg/feat-css/glossary/css_properties.json5.md index a882c24edc..f0ead9aec6 100644 --- a/docs/wg/feat-css/glossary/css_properties.json5.md +++ b/docs/wg/feat-css/glossary/css_properties.json5.md @@ -1,6 +1,11 @@ --- title: "css_properties.json5" description: "Chromium Blink's single source of truth for CSS property metadata, used as a reference for browser-grade CSS cascade implementation" +tags: + - internal + - wg + - css + --- # About `css_properties.json5` diff --git a/docs/wg/feat-editor/index.md b/docs/wg/feat-editor/index.md index f7bffeff6b..cd9ebc9abc 100644 --- a/docs/wg/feat-editor/index.md +++ b/docs/wg/feat-editor/index.md @@ -1,5 +1,10 @@ --- title: Editor Features (WG) +tags: + - internal + - wg + - editor + --- Editor features are a collection of **Grida editor-specific** behaviors and capabilities. These documents focus on **practical implementation details** over mathematical abstractions, emphasizing real-world UX and editor workflows. diff --git a/docs/wg/feat-editor/ux-surface/index.md b/docs/wg/feat-editor/ux-surface/index.md index c01552b964..05c4649189 100644 --- a/docs/wg/feat-editor/ux-surface/index.md +++ b/docs/wg/feat-editor/ux-surface/index.md @@ -1,5 +1,10 @@ --- title: UX Surface (WG) +tags: + - internal + - wg + - editor + --- UX Surface documents specify **Grida editor's specific practical UX specifications** for surface interactions, selection, targeting, and related user interface behaviors. diff --git a/docs/wg/feat-editor/ux-surface/selection.md b/docs/wg/feat-editor/ux-surface/selection.md index 76d9996d1e..c8f25bd99e 100644 --- a/docs/wg/feat-editor/ux-surface/selection.md +++ b/docs/wg/feat-editor/ux-surface/selection.md @@ -1,3 +1,11 @@ +--- +title: Selection +tags: + - internal + - wg + - editor +--- + # Selection This document describes the selection behavior for pointer interactions and keyboard modifiers. diff --git a/docs/wg/feat-fig/glossary/fig.kiwi.md b/docs/wg/feat-fig/glossary/fig.kiwi.md index 6504739302..8715de271d 100644 --- a/docs/wg/feat-fig/glossary/fig.kiwi.md +++ b/docs/wg/feat-fig/glossary/fig.kiwi.md @@ -1,3 +1,12 @@ +--- +title: Kiwi Schema for .fig Format +tags: + - internal + - wg + - figma + - format-schema +--- + # Kiwi Schema for .fig Format ## Overview diff --git a/docs/wg/feat-fig/index.md b/docs/wg/feat-fig/index.md index 75ea4a810b..7d30c3de84 100644 --- a/docs/wg/feat-fig/index.md +++ b/docs/wg/feat-fig/index.md @@ -1,6 +1,12 @@ --- title: "Figma Import & Translation (io-figma)" description: Implementation details behind importing .fig files into Grida. +tags: + - internal + - wg + - figma + - import + --- # .fig Format - `io-figma` diff --git a/docs/wg/feat-fontgen/index.md b/docs/wg/feat-fontgen/index.md index 46f30a7c31..dfe3547b46 100644 --- a/docs/wg/feat-fontgen/index.md +++ b/docs/wg/feat-fontgen/index.md @@ -1,5 +1,11 @@ --- title: Font Generation (fontgen) +tags: + - internal + - wg + - typography + - fonts + --- # Font Generation - `fontgen` diff --git a/docs/wg/feat-hash-nch/index.md b/docs/wg/feat-hash-nch/index.md index b835fd5d81..c20adb77d4 100644 --- a/docs/wg/feat-hash-nch/index.md +++ b/docs/wg/feat-hash-nch/index.md @@ -1,5 +1,11 @@ --- title: Fast Hashing (hash-nch) +tags: + - internal + - wg + - performance + - resources + --- # Fast Hashing – `hash-nch` diff --git a/docs/wg/feat-icu-uct/index.md b/docs/wg/feat-icu-uct/index.md index 0123232cb5..1f8dead203 100644 --- a/docs/wg/feat-icu-uct/index.md +++ b/docs/wg/feat-icu-uct/index.md @@ -1,6 +1,13 @@ --- title: Unicode Coverage Tracker (UCT) description: A working group draft describing the Unicode Coverage Tracker (UCT) feature for the core engine. +tags: + - internal + - wg + - icu + - typography + - text + --- # Unicode Coverage Tracker / Unicode Count Table (UCT) diff --git a/docs/wg/feat-image-filters/index.md b/docs/wg/feat-image-filters/index.md index f520d181ee..cba9d900c4 100644 --- a/docs/wg/feat-image-filters/index.md +++ b/docs/wg/feat-image-filters/index.md @@ -1,5 +1,12 @@ --- title: Image Filters (image-filters) +tags: + - internal + - wg + - canvas + - filters + - rendering + --- # Image Filters - `image-filters` diff --git a/docs/wg/feat-layout/index.md b/docs/wg/feat-layout/index.md index 369040a828..4beb99f762 100644 --- a/docs/wg/feat-layout/index.md +++ b/docs/wg/feat-layout/index.md @@ -1,5 +1,11 @@ --- title: Layout Model (layout) +tags: + - internal + - wg + - layout + - canvas + --- # Layout Model - `layout` diff --git a/docs/wg/feat-masks/index.md b/docs/wg/feat-masks/index.md index 5fff7e10b8..c484d23f83 100644 --- a/docs/wg/feat-masks/index.md +++ b/docs/wg/feat-masks/index.md @@ -1,5 +1,12 @@ --- title: Masking Model (masks) +tags: + - internal + - wg + - canvas + - masks + - rendering + --- # Masks — Working Group Draft (`masks`) diff --git a/docs/wg/feat-painting/fe-noise.md b/docs/wg/feat-painting/fe-noise.md index 4811aeac29..397745bdbd 100644 --- a/docs/wg/feat-painting/fe-noise.md +++ b/docs/wg/feat-painting/fe-noise.md @@ -1,5 +1,12 @@ --- title: Noise Effects (fe-noise) +tags: + - internal + - wg + - canvas + - painting + - rendering + --- # Noise Effects - `fe-noise` diff --git a/docs/wg/feat-painting/stroke-rect.md b/docs/wg/feat-painting/stroke-rect.md index 2944fa98ec..312bfea57d 100644 --- a/docs/wg/feat-painting/stroke-rect.md +++ b/docs/wg/feat-painting/stroke-rect.md @@ -1,5 +1,12 @@ --- title: Rectangular Stroke Model (stroke-rect) +tags: + - internal + - wg + - canvas + - painting + - rendering + --- # Rectangular Stroke - `stroke-rect` diff --git a/docs/wg/feat-paragraph/impl-emoji-placeholder.md b/docs/wg/feat-paragraph/impl-emoji-placeholder.md index 4eee853df4..125da90dc3 100644 --- a/docs/wg/feat-paragraph/impl-emoji-placeholder.md +++ b/docs/wg/feat-paragraph/impl-emoji-placeholder.md @@ -1,5 +1,12 @@ --- title: Emoji Placeholder Rendering (emoji-placeholder) +tags: + - internal + - wg + - typography + - text + - fonts + --- # Paragraph - `emoji-placeholder` diff --git a/docs/wg/feat-paragraph/impl-font-fallback.md b/docs/wg/feat-paragraph/impl-font-fallback.md index 4be1fcebbf..10db06df41 100644 --- a/docs/wg/feat-paragraph/impl-font-fallback.md +++ b/docs/wg/feat-paragraph/impl-font-fallback.md @@ -1,5 +1,12 @@ --- title: Font Fallback Strategy (font-fallback) +tags: + - internal + - wg + - typography + - text + - fonts + --- # Paragraph - `font-fallback` diff --git a/docs/wg/feat-paragraph/impl-italic.md b/docs/wg/feat-paragraph/impl-italic.md index ac8b0dde70..f0a0e482a1 100644 --- a/docs/wg/feat-paragraph/impl-italic.md +++ b/docs/wg/feat-paragraph/impl-italic.md @@ -1,5 +1,12 @@ --- title: Italic and Oblique Strategy (italic) +tags: + - internal + - wg + - typography + - text + - fonts + --- # Paragraph - `italic` diff --git a/docs/wg/feat-paragraph/impl-opsz-auto.md b/docs/wg/feat-paragraph/impl-opsz-auto.md index 9958cb4407..dd6071113b 100644 --- a/docs/wg/feat-paragraph/impl-opsz-auto.md +++ b/docs/wg/feat-paragraph/impl-opsz-auto.md @@ -1,5 +1,12 @@ --- title: Optical Size Automation (opsz-auto) +tags: + - internal + - wg + - typography + - text + - fonts + --- # Paragraph - `opsz: auto` diff --git a/docs/wg/feat-paragraph/index.md b/docs/wg/feat-paragraph/index.md index 171aac9918..7a53156b2c 100644 --- a/docs/wg/feat-paragraph/index.md +++ b/docs/wg/feat-paragraph/index.md @@ -1,5 +1,12 @@ --- title: Paragraph Feature Roadmap +tags: + - internal + - wg + - typography + - text + - fonts + --- # Paragraph Feature Roadmap diff --git a/docs/wg/feat-resources/index.md b/docs/wg/feat-resources/index.md index 77b36817c2..80c43b80a1 100644 --- a/docs/wg/feat-resources/index.md +++ b/docs/wg/feat-resources/index.md @@ -1,5 +1,13 @@ --- title: Resource Management (resources) +tags: + - internal + - wg + - resources + - canvas + - wasm + - performance + --- # Resources - `resources` diff --git a/docs/wg/feat-schema/naming-conventions.md b/docs/wg/feat-schema/naming-conventions.md index 2dee5ae325..8e01115e82 100644 --- a/docs/wg/feat-schema/naming-conventions.md +++ b/docs/wg/feat-schema/naming-conventions.md @@ -1,5 +1,10 @@ --- title: Grida document schema naming conventions +tags: + - internal + - wg + - format-schema + --- # `.grida` Naming Conventions diff --git a/docs/wg/feat-svg/pattern.md b/docs/wg/feat-svg/pattern.md index 14c7a6e58a..6712fe93ef 100644 --- a/docs/wg/feat-svg/pattern.md +++ b/docs/wg/feat-svg/pattern.md @@ -1,6 +1,13 @@ --- title: SVG Pattern Support format: md +tags: + - internal + - wg + - canvas + - svg + - painting + --- # SVG Pattern Support diff --git a/docs/wg/feat-svg/testing.md b/docs/wg/feat-svg/testing.md index 228e5953cc..1dbaccebb5 100644 --- a/docs/wg/feat-svg/testing.md +++ b/docs/wg/feat-svg/testing.md @@ -1,3 +1,14 @@ +--- +title: SVG Testing +format: md +tags: + - internal + - wg + - canvas + - svg + - testing +--- + # SVG Testing This document describes the testing methodology and tools used to evaluate SVG rendering accuracy in Grida Canvas. diff --git a/docs/wg/feat-svg/text-import.md b/docs/wg/feat-svg/text-import.md index 1bf8b23853..9e337cecb3 100644 --- a/docs/wg/feat-svg/text-import.md +++ b/docs/wg/feat-svg/text-import.md @@ -1,5 +1,13 @@ --- format: md +tags: + - internal + - wg + - canvas + - svg + - import + - text + --- # SVG Text Import Model diff --git a/docs/wg/feat-text-editing/attributed-text.md b/docs/wg/feat-text-editing/attributed-text.md index 906cb24758..382eebc737 100644 --- a/docs/wg/feat-text-editing/attributed-text.md +++ b/docs/wg/feat-text-editing/attributed-text.md @@ -1,6 +1,13 @@ --- id: attributed-text title: "Attributed Text: Data Model Specification" +tags: + - internal + - wg + - typography + - text + - editor + --- ## Motivation diff --git a/docs/wg/feat-text-editing/impl-performance.md b/docs/wg/feat-text-editing/impl-performance.md index f6836cec9f..c02f838afc 100644 --- a/docs/wg/feat-text-editing/impl-performance.md +++ b/docs/wg/feat-text-editing/impl-performance.md @@ -1,6 +1,13 @@ --- id: impl-performance title: "Text Editing: Performance Model" +tags: + - internal + - wg + - typography + - text + - performance + --- ## Motivation diff --git a/docs/wg/feat-text-editing/index.md b/docs/wg/feat-text-editing/index.md index 3a3629e2f8..9d650a52e3 100644 --- a/docs/wg/feat-text-editing/index.md +++ b/docs/wg/feat-text-editing/index.md @@ -1,6 +1,13 @@ --- id: feat-text-editing title: "Text Editing: Manifesto" +tags: + - internal + - wg + - typography + - text + - editor + --- ## Motivation diff --git a/docs/wg/feat-text-editing/richtext-persistency.md b/docs/wg/feat-text-editing/richtext-persistency.md index 60e6c9d7cf..1eb773cd2d 100644 --- a/docs/wg/feat-text-editing/richtext-persistency.md +++ b/docs/wg/feat-text-editing/richtext-persistency.md @@ -1,6 +1,13 @@ --- id: richtext-persistency title: "Rich Text Persistency: Research & Comparative Reference" +tags: + - internal + - wg + - typography + - text + - editor + --- ## Purpose diff --git a/docs/wg/feat-vector-network/index.md b/docs/wg/feat-vector-network/index.md index f986b0ceb6..167fac6e08 100644 --- a/docs/wg/feat-vector-network/index.md +++ b/docs/wg/feat-vector-network/index.md @@ -1,5 +1,12 @@ --- title: Vector Network Implementation +tags: + - internal + - wg + - canvas + - vector + - editor + --- # Grida's VectorNetwork Implementation. diff --git a/docs/wg/index.md b/docs/wg/index.md index 64788785e0..d5e7f8e683 100644 --- a/docs/wg/index.md +++ b/docs/wg/index.md @@ -2,6 +2,10 @@ id: intro title: "Working Group" sidebar_position: 1 +tags: + - internal + - wg + --- # Working Group diff --git a/docs/wg/platform/_history/vercel-domain-configuration-snapshot-pre-byod.md b/docs/wg/platform/_history/vercel-domain-configuration-snapshot-pre-byod.md index 68a02b839c..c52c49ea7c 100644 --- a/docs/wg/platform/_history/vercel-domain-configuration-snapshot-pre-byod.md +++ b/docs/wg/platform/_history/vercel-domain-configuration-snapshot-pre-byod.md @@ -2,6 +2,12 @@ title: Vercel domain configuration snapshot (pre-BYOD) status: historical unlisted: true +tags: + - internal + - platform + - infra + - historical + --- This is a historical snapshot of **Grida-owned** domain configurations in Vercel **before** we introduced **Bring Your Own Domain (BYOD)** support. diff --git a/docs/wg/platform/index.md b/docs/wg/platform/index.md index db7d9b8cb8..c5f72bbe54 100644 --- a/docs/wg/platform/index.md +++ b/docs/wg/platform/index.md @@ -1,5 +1,10 @@ --- title: Platform (WG) +tags: + - internal + - wg + - platform + --- # Platform (WG) diff --git a/docs/wg/platform/multi-tenant-custom-domain-vercel.md b/docs/wg/platform/multi-tenant-custom-domain-vercel.md index e68ec7b706..d711d4624b 100644 --- a/docs/wg/platform/multi-tenant-custom-domain-vercel.md +++ b/docs/wg/platform/multi-tenant-custom-domain-vercel.md @@ -1,5 +1,11 @@ --- title: Multi-tenant Custom Domains on Vercel +tags: + - internal + - wg + - platform + - infra + --- | feature id | status | description | PRs | diff --git a/docs/wg/platform/universal-docs-routing.md b/docs/wg/platform/universal-docs-routing.md index 830c1d4a17..bbae60b2ac 100644 --- a/docs/wg/platform/universal-docs-routing.md +++ b/docs/wg/platform/universal-docs-routing.md @@ -1,5 +1,12 @@ --- title: Universal Docs Routing (WG) +tags: + - internal + - user-facing + - wg + - platform + - routing + --- # Universal Docs Routing diff --git a/docs/wg/research/chromium/compositor-architecture.md b/docs/wg/research/chromium/compositor-architecture.md index 6bd5d94579..7acd7e7c3e 100644 --- a/docs/wg/research/chromium/compositor-architecture.md +++ b/docs/wg/research/chromium/compositor-architecture.md @@ -1,5 +1,12 @@ --- title: "Chromium Compositor Architecture" +tags: + - internal + - research + - chromium + - compositing + - rendering + --- # Chromium Compositor Architecture diff --git a/docs/wg/research/chromium/damage-tracking.md b/docs/wg/research/chromium/damage-tracking.md index 1894e7e76c..dcc9d20916 100644 --- a/docs/wg/research/chromium/damage-tracking.md +++ b/docs/wg/research/chromium/damage-tracking.md @@ -1,6 +1,13 @@ --- title: "Chromium Damage Tracking" format: md +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Damage Tracking diff --git a/docs/wg/research/chromium/effect-optimizations.md b/docs/wg/research/chromium/effect-optimizations.md index bd49c0577b..630efc2c31 100644 --- a/docs/wg/research/chromium/effect-optimizations.md +++ b/docs/wg/research/chromium/effect-optimizations.md @@ -1,6 +1,13 @@ --- title: "Chromium Effect Optimizations" format: md +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Effect Optimizations diff --git a/docs/wg/research/chromium/glossary.md b/docs/wg/research/chromium/glossary.md index 4430b9345c..10c04882de 100644 --- a/docs/wg/research/chromium/glossary.md +++ b/docs/wg/research/chromium/glossary.md @@ -1,5 +1,12 @@ --- title: "Chromium Compositor — Glossary" +tags: + - internal + - research + - chromium + - rendering + - compositing + --- # Chromium Compositor — Glossary diff --git a/docs/wg/research/chromium/index.md b/docs/wg/research/chromium/index.md index 0b7615e7bd..8b98700f29 100644 --- a/docs/wg/research/chromium/index.md +++ b/docs/wg/research/chromium/index.md @@ -1,5 +1,12 @@ --- title: "Chromium Compositor Research" +tags: + - internal + - research + - chromium + - rendering + - compositing + --- # Chromium Compositor Research diff --git a/docs/wg/research/chromium/interaction-and-quality.md b/docs/wg/research/chromium/interaction-and-quality.md index cc8b32c49e..4a2e7126f4 100644 --- a/docs/wg/research/chromium/interaction-and-quality.md +++ b/docs/wg/research/chromium/interaction-and-quality.md @@ -1,5 +1,12 @@ --- title: "Chromium Interaction and Quality Management" +tags: + - internal + - research + - chromium + - rendering + - compositing + --- # Chromium Interaction and Quality Management diff --git a/docs/wg/research/chromium/memory-and-priority.md b/docs/wg/research/chromium/memory-and-priority.md index 40ecbbb216..c5736ffe2e 100644 --- a/docs/wg/research/chromium/memory-and-priority.md +++ b/docs/wg/research/chromium/memory-and-priority.md @@ -1,5 +1,12 @@ --- title: "Chromium Memory Management and Tile Priority" +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Memory Management and Tile Priority diff --git a/docs/wg/research/chromium/paint-recording.md b/docs/wg/research/chromium/paint-recording.md index 93648794f9..ef393c1417 100644 --- a/docs/wg/research/chromium/paint-recording.md +++ b/docs/wg/research/chromium/paint-recording.md @@ -1,6 +1,13 @@ --- title: "Chromium Paint Recording System" format: md +tags: + - internal + - research + - chromium + - rendering + - compositing + --- # Chromium Paint Recording System diff --git a/docs/wg/research/chromium/pinch-zoom-deep-dive.md b/docs/wg/research/chromium/pinch-zoom-deep-dive.md index cf5aab1eca..2c0cbc6090 100644 --- a/docs/wg/research/chromium/pinch-zoom-deep-dive.md +++ b/docs/wg/research/chromium/pinch-zoom-deep-dive.md @@ -1,6 +1,13 @@ --- title: "Chromium Pinch-Zoom Deep Dive" format: md +tags: + - internal + - research + - chromium + - rendering + - compositing + --- # Chromium Pinch-Zoom Deep Dive diff --git a/docs/wg/research/chromium/property-trees.md b/docs/wg/research/chromium/property-trees.md index a16895c66e..fc264cd173 100644 --- a/docs/wg/research/chromium/property-trees.md +++ b/docs/wg/research/chromium/property-trees.md @@ -1,6 +1,13 @@ --- title: "Chromium Property Trees" format: md +tags: + - internal + - research + - chromium + - compositing + - rendering + --- # Chromium Property Trees diff --git a/docs/wg/research/chromium/render-surfaces.md b/docs/wg/research/chromium/render-surfaces.md index 217e4952e3..e2f8b8e7aa 100644 --- a/docs/wg/research/chromium/render-surfaces.md +++ b/docs/wg/research/chromium/render-surfaces.md @@ -1,5 +1,12 @@ --- title: "Chromium Render Surfaces" +tags: + - internal + - research + - chromium + - compositing + - rendering + --- # Chromium Render Surfaces diff --git a/docs/wg/research/chromium/resolution-scaling-during-interaction.md b/docs/wg/research/chromium/resolution-scaling-during-interaction.md index 18e36f2e5f..ae6725b388 100644 --- a/docs/wg/research/chromium/resolution-scaling-during-interaction.md +++ b/docs/wg/research/chromium/resolution-scaling-during-interaction.md @@ -1,6 +1,13 @@ --- title: "Chromium Resolution Scaling During Interaction" format: md +tags: + - internal + - research + - chromium + - rendering + - performance + --- # Chromium Resolution Scaling During Interaction diff --git a/docs/wg/research/chromium/scheduler.md b/docs/wg/research/chromium/scheduler.md index c3e9c9edab..0b40b76175 100644 --- a/docs/wg/research/chromium/scheduler.md +++ b/docs/wg/research/chromium/scheduler.md @@ -1,6 +1,13 @@ --- title: "Chromium Compositor Scheduler" format: md +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Compositor Scheduler diff --git a/docs/wg/research/chromium/svg-pattern.md b/docs/wg/research/chromium/svg-pattern.md index 02b881b870..4321e72daa 100644 --- a/docs/wg/research/chromium/svg-pattern.md +++ b/docs/wg/research/chromium/svg-pattern.md @@ -1,6 +1,13 @@ --- title: "Chromium SVG Pattern Paint Server" format: md +tags: + - internal + - research + - chromium + - rendering + - svg + --- # Chromium SVG Pattern Paint Server diff --git a/docs/wg/research/chromium/tiling-and-rasterization.md b/docs/wg/research/chromium/tiling-and-rasterization.md index 3ff6e640ab..1834a729c9 100644 --- a/docs/wg/research/chromium/tiling-and-rasterization.md +++ b/docs/wg/research/chromium/tiling-and-rasterization.md @@ -1,5 +1,12 @@ --- title: "Chromium Tiling and Rasterization" +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Tiling and Rasterization diff --git a/docs/wg/research/chromium/tiling-deep-dive.md b/docs/wg/research/chromium/tiling-deep-dive.md index cd7becb6a1..efa56eca65 100644 --- a/docs/wg/research/chromium/tiling-deep-dive.md +++ b/docs/wg/research/chromium/tiling-deep-dive.md @@ -1,6 +1,13 @@ --- title: "Chromium Tiling Deep Dive" format: md +tags: + - internal + - research + - chromium + - compositing + - performance + --- # Chromium Tiling Deep Dive