跳到主要内容

dsh-table-render

已验证

@ch4acko3/dsh-table-render · v0.1.2 · MIT · Web 界面

Safe responsive table rendering service for DeepSeek Harness Web plugins

安装

dsh plugin add @ch4acko3/dsh-table-render

dsh --profile default --dump-config 确认 layer 已生效 —— 参见安装指南

源码

发布到 npm 但没有公开仓库。安装前请检查包内容。

标签

说明文档

@ch4acko3/dsh-table-render

Safe, responsive semantic table rendering for DeepSeek Harness Web plugins.

export const inject = ['tableRenderer']

export function apply(ctx) {
  const result = ctx.tableRenderer.render({
    caption: 'Package status',
    rows: [
      { package: 'markdown', status: 'ready', tests: 7 },
      { package: 'mermaid', status: 'ready', tests: 2 },
    ],
  })

  console.log(result.html)
}

Column order is inferred from the first appearance of each record key, or can be supplied explicitly with labels and alignment. Missing values, nulls, booleans, finite numbers, strings, and empty datasets receive distinct, accessible output.