CH4ACKO3/dsh-render-engine--packages-code-render0

@ch4acko3/dsh-code-render

Safe HTML code rendering service for DeepSeek Harness Web plugins

AI 분석

核心用途是将代码文本安全地渲染为主题自适应、防转义的 HTML 代码块。适合需要在自定义 UI 中展示高质量代码排版的 Web 插件开发者。

패키지
@ch4acko3/dsh-code-render
버전
0.1.1
라이선스
MIT
최근 업데이트
2026. 8. 21.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CH4ACKO3/dsh-render-engine#8401d60319cc256b73167e14460c12cec647db4f&path:packages/code-render

@ch4acko3/dsh-code-render

A browser-side Cordis service that renders ctx.syntaxHighlighter tokens as safe, theme-aware HTML code blocks.

export const inject = ['codeRenderer']

export function apply(ctx) {
  const result = ctx.codeRenderer.render({
    code: 'const answer = 42',
    language: 'ts',
  })
  console.log(result.html)
}

Source text and HTML attributes are escaped. Colors follow DSH's --shiki-* CSS variables, and original LF, CRLF, or CR line endings are retained.