| 117 | * Plugin for CJK text handling |
| 118 | */ |
| 119 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected