{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "highlight-docs",
  "title": "Highlight",
  "description": "Add marked inline text.",
  "files": [
    {
      "path": "../../content/docs/(plugins)/(marks)/highlight.mdx",
      "content": "---\ntitle: Highlight\ndescription: Add marked inline text.\ndocs:\n  - route: /docs/basic-marks\n    title: Basic Marks\n  - route: /docs/components/highlight-node\n    title: Highlight Leaf\n  - route: /docs/components/mark-toolbar-button\n    title: Mark Toolbar Button\n  - route: /docs/examples/find-replace\n    title: Find Replace Demo\n---\n\nHighlight applies the `highlight` leaf mark to selected text. It is the authoring mark; [Find Replace](/docs/examples/find-replace) uses a separate search highlight leaf for transient search results.\n\n<ComponentPreview name=\"basic-marks-demo\" />\n\n<PackageInfo>\n\n## Features\n\n- `KEYS.highlight` leaf mark.\n- Directional selection affinity.\n- HTML deserialization from `mark`.\n- `<mark>` rendering by default.\n- Registry `HighlightLeaf` for styled marked text.\n- Optional input rules through `HighlightRules`.\n\n</PackageInfo>\n\n## Kit Usage\n\n<Steps>\n\n### Add Basic Marks\n\n`BasicMarksKit` includes `HighlightPlugin`, `HighlightLeaf`, `==` and `≡` input rules, and a `mod+shift+h` shortcut.\n\n<ComponentSource name=\"basic-marks-kit\" />\n\n```tsx\nimport { createPlateEditor } from 'platejs/react';\n\nimport { BasicMarksKit } from '@/components/editor/plugins/basic-marks-kit';\n\nexport const editor = createPlateEditor({\n  plugins: [...BasicMarksKit],\n});\n```\n\n### Add A Toolbar Button\n\nUse `MarkToolbarButton` with `KEYS.highlight`.\n\n```tsx\nimport { HighlighterIcon } from 'lucide-react';\nimport { KEYS } from 'platejs';\n\nimport { MarkToolbarButton } from '@/components/ui/mark-toolbar-button';\n\nexport function HighlightToolbarButton() {\n  return (\n    <MarkToolbarButton nodeType={KEYS.highlight} tooltip=\"Highlight\">\n      <HighlighterIcon />\n    </MarkToolbarButton>\n  );\n}\n```\n\n</Steps>\n\n## Manual Usage\n\nInstall the mark package.\n\n```bash\nnpm install @platejs/basic-nodes\n```\n\nAdd `HighlightPlugin` directly when you want the default `<mark>` render.\n\n```tsx\nimport { HighlightPlugin } from '@platejs/basic-nodes/react';\nimport { createPlateEditor } from 'platejs/react';\n\nexport const editor = createPlateEditor({\n  plugins: [HighlightPlugin],\n});\n```\n\nConfigure the registry leaf, input rules, and shortcut when you want the same behavior as the kit.\n\n```tsx\nimport { HighlightRules } from '@platejs/basic-nodes';\nimport { HighlightPlugin } from '@platejs/basic-nodes/react';\n\nimport { HighlightLeaf } from '@/components/ui/highlight-node';\n\nexport const highlightPlugin = HighlightPlugin.configure({\n  inputRules: [\n    HighlightRules.markdown({ variant: '==' }),\n    HighlightRules.markdown({ variant: '≡' }),\n  ],\n  node: { component: HighlightLeaf },\n  shortcuts: { toggle: { keys: 'mod+shift+h' } },\n});\n```\n\n## Ownership\n\n| Surface | Owner | What It Does |\n|---------|-------|--------------|\n| `BaseHighlightPlugin` | `@platejs/basic-nodes` | Headless highlight mark, HTML parser, render tag, selection rule, and `toggle` transform. |\n| `HighlightPlugin` | `@platejs/basic-nodes/react` | React wrapper for the headless highlight mark. |\n| `HighlightRules.markdown` | `@platejs/basic-nodes` | Optional mark input rule factory. |\n| `HighlightLeaf` | Registry UI | Styled client highlight leaf using `PlateLeaf`. |\n| `HighlightLeafStatic` | Registry UI | Static rendering version using `SlateLeaf`. |\n| `BasicMarksKit` | Registry | Adds `HighlightPlugin`, `HighlightLeaf`, two input-rule variants, and `mod+shift+h`. |\n| `MarkToolbarButton` | Registry UI | Reads active mark state and calls the mark toggle hook. |\n\nThe package owns the mark. The registry owns highlight color and toolbar placement.\n\n## Behavior\n\n| Behavior | Source |\n|----------|--------|\n| Mark key | `KEYS.highlight` |\n| Leaf behavior | `node.isLeaf: true` |\n| Toggle transform | `editor.tf.highlight.toggle()` calls `editor.tf.toggleMark(type)`. |\n| Selection affinity | `directional` |\n| HTML tags | `mark` |\n| Render output | `mark` |\n| Kit input rules | `==` and `≡` variants |\n| Kit shortcut | `mod+shift+h` |\n\n## API Reference\n\n| API | Package | Use |\n|-----|---------|-----|\n| `BaseHighlightPlugin` | `@platejs/basic-nodes` | Headless highlight plugin. |\n| `HighlightPlugin` | `@platejs/basic-nodes/react` | React highlight plugin. |\n| `HighlightRules.markdown(options)` | `@platejs/basic-nodes` | Creates a highlight mark input rule. |\n| `tf.highlight.toggle()` | `@platejs/basic-nodes` | Toggles the highlight mark at the selection. |\n| `HighlightLeaf` | Registry UI | Styled client highlight leaf. |\n| `HighlightLeafStatic` | Registry UI | Styled static highlight leaf. |\n",
      "type": "registry:file",
      "target": "content/docs/plate/(plugins)/(marks)/highlight.mdx"
    }
  ],
  "type": "registry:file"
}