MCPcopy
hub / github.com/vercel/streamdown / CjkPlugin

Interface CjkPlugin

packages/streamdown/lib/plugin-types.ts:119–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117 * Plugin for CJK text handling
118 */
119export interface CjkPlugin {
120 name: "cjk";
121 /**
122 * @deprecated Use remarkPluginsBefore and remarkPluginsAfter instead
123 * All remark plugins (for backwards compatibility)
124 */
125 remarkPlugins: Pluggable[];
126 /**
127 * Remark plugins that must run AFTER remarkGfm
128 * (e.g., autolink boundary splitting, strikethrough enhancements)
129 */
130 remarkPluginsAfter: Pluggable[];
131 /**
132 * Remark plugins that must run BEFORE remarkGfm
133 * (e.g., remark-cjk-friendly which modifies emphasis handling)
134 */
135 remarkPluginsBefore: Pluggable[];
136 type: "cjk";
137}
138
139/**
140 * Union type for all plugins

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected