Render Markdown to a standalone, self-contained HTML page: an `md_html_render` tool that works in a headless profile, plus a web drawer to browse, preview, edit and export local `.md` files; both share one renderer, with no runtime dependencies.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:LeslieWylie/dsh-md-preview
GitHub-sourced plugins run build scripts on your machine at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
English | 简体中文
Turn Markdown into a page you can send to someone.
A Markdown renderer for the DeepSeek Harness with two front doors and one engine behind them:
md_html_render— a tool the model can call. Give it Markdown, get back a complete, self-contained HTML document, optionally written to disk. Works in a headless profile with no GUI at all.- The MD drawer — press MD in the web session header, browse your working directory, click a
.mdfile. It renders in place. No new tab, no second editor, no context switch.
Both go through the same renderer, so a page the model generates and a page you export from the drawer are byte-for-byte identical. A test asserts that on every case in the corpus.
Install
Not on npm yet — install straight from GitHub. Add it to your profile's package.json:
// ~/.dsh/profiles/<profile>/package.json
{
"dependencies": {
"dsh-md-preview": "github:LeslieWylie/dsh-md-preview#v0.2.1"
},
"dsh": {
"profile": {
"bundles": ["dsh-md-preview"]
}
}
}
Then reinstall and restart the profile:
cd ~/.dsh/profiles/<profile> && pnpm install
dsh --profile <profile>
Drop the #v0.2.1 to track the default branch instead of pinning.
dsh --profile web --patch <(printf -- "- insert:\n - id: md-preview\n name: dsh-md-preview\n")
The package still has to resolve from the profile's node_modules, so run the pnpm install above first.
The tool
md_html_render(markdown, title?, save_path?) -> { html, savedPath?, error? }
| Parameter | ||
|---|---|---|
markdown |
required | The Markdown source. |
title |
optional | Page <title>. Defaults to Markdown. |
save_path |
optional | Where to write the file. Resolved through the session filesystem service, so it obeys the same sandbox policy as every other write. |
Ask for a report, a plan, a comparison table — anything the model would otherwise dump into the transcript — and get a file you can open in a browser or mail to a colleague.
Render this migration plan to
~/Desktop/plan.html
The output is standalone: styles are embedded, there is no stylesheet, font, script, or image loaded from anywhere. It opens from disk, from a USB stick, or on an airgapped machine and looks the same. It follows the reader's dark mode. Nothing phones home, because there is nothing to phone home to.
If save_path is refused by the sandbox, the tool still returns the HTML along with the error, so the work is never lost to a permissions problem.
The drawer
| Browse in place | Opens on your working directory. Click a folder to descend, ↑ to go back. No system file dialog. |
| Render on click | Headings, bold/italic/strikethrough, inline code, fenced code, blockquotes, ordered/unordered/task lists, tables, links, images, rules. |
| Edit | Toggle to a plain textarea to scratch a note or fix a line, then toggle back. |
| Export | Writes a standalone HTML page next to the source — the same document md_html_render produces. |
| Theme-aware | Reads the harness theme variables, so it matches light and dark without configuration. |
Why another Markdown plugin
Three things this one does not do:
- No runtime dependencies. The client half loads as a plain script with no bundler, so
markedandmarkdown-itare not available to it. The renderer is ~150 lines of hand-written JavaScript. The dependency tree you audit is one file. - No second path to your disk. Every read and write goes through the harness
fsservice, so the plugin inherits whatever sandbox policy the session already runs under. It never opens its own filesystem access. The drawer'sreadFilerefuses anything that is not.md,.markdown,.mdx, or.txt. - No raw HTML execution. Every scrap of document text is HTML-escaped before any inline syntax runs, and link targets that are not
http(s):,#,/, ormailto:collapse to#. A document containing<script>or ajavascript:link renders as literal characters.
How it works
lib/render.js ← the only renderer
╱ ╲
md_html_render ◀──╯ ╰──▶ Export button
(host, headless) (client, in-browser)
│ │
╰──────────▶ ctx.fs ◀──────────────────╯
every read and write
Only fs is a hard requirement. The tool registry and the client connection are picked up opportunistically through ctx.inject, so the plugin runs headless, in the GUI, or in both, and degrades to whichever surface the profile actually has instead of failing to load.
Compatibility
| Profile | What you get |
|---|---|
| Headless / CLI | md_html_render |
| Web GUI | md_html_render and the MD drawer |
No fs service |
Logs a warning and stays inert rather than half-loading |
Requires Node ^22.19.0 || >=24.0.0.
Tests
npm test
Three executing suites, no mocks of the thing under test:
tests/render.test.cjsextracts the client renderer from the browser bundle and runs it.tests/host.test.mjsruns the host renderer on the same corpus, asserts the two agree exactly (a drift between them is what produced two competing Markdown plugins before they were merged), then drivesapply()against a stub context to check the tool shape, the RPC endpoints, and the sandbox-refusal path.tests/boot.test.mjsboots a real harnessContextwith the harness's own filesystem service, loads this package the way a profile does, then asks the real tool registry formd_html_renderand executes it against the real disk.
That last one exists because a DSH plugin can import cleanly, pass every unit test, and still register nothing when a Context actually boots it — silently, with no error. Unit tests cannot see that. It needs the harness packages, so it skips with exit 0 from a bare clone; to actually exercise it:
cd ~/.dsh/profiles/<profile>/node_modules/dsh-md-preview && node tests/boot.test.mjs
The XSS checks assert a structural invariant — no emitted tag ever carries an unterminated attribute or an on*= handler — and the suite includes checks that the checker itself goes red on genuinely unsafe markup, so a security assertion cannot silently rot into one that always passes.
License
MIT
Links
More in this category
liustack/modlens★ 1199
Vision bridge for text-only models: paste an image, get structured JSON evidence (OCR, layout, semantics).
Anionex/dsh-vision-toolkit★ 308
Vision tasks for text-only models: intent-aware image Q&A, long-screenshot OCR, UI reproduction, grounding, and pixel diff.
zhaoolee/notes★ 138
Export DSH conversations as Smartisan Notes-style PNGs, or create and update Markdown notes in a configured account-scoped workspace.
liustack/modsearch★ 85
Web search bridge for text-only agents: ask the web or X, get structured JSON evidence (search, fetch, citations).
Lum1104/dsh-browser★ 80
Chrome sidebar extension that lets DSH operate your browser directly, no vision capabilities required.
taxueseek/argo★ 69
Search built for agents: multilingual coverage across web, academic, code, shopping, finance, news, and encyclopedias.