Skip to content

dsh-syntax-highlight

Verified

@ch4acko3/dsh-syntax-highlight · v0.1.1 · MIT · Web UI

Structured syntax highlighting service for DeepSeek Harness Web plugins

Install

dsh plugin add @ch4acko3/dsh-syntax-highlight

Confirm the layer applied with dsh --profile default --dump-config — see the install guide.

Source

Published to npm without a public repository. Inspect the package contents before installing.

Tags

Readme

@ch4acko3/dsh-syntax-highlight

A browser-side Cordis service that converts the shared ctx.shiki output into a stable token model for DeepSeek Harness plugins.

export const inject = ['syntaxHighlighter']

export function apply(ctx) {
  const result = ctx.syntaxHighlighter.highlight({
    code: 'const answer = 42',
    language: 'ts',
  })
  console.log(result.lines)
}

Unknown or absent language hints return plain tokens instead of throwing. The result's lineEndings field preserves the source's original LF, CRLF, or CR separators.