DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Md Export — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-md-export

Md Export

DSH web plugin (dsh-better-sidebar companion): adds an export button to the markdown editor toolbar — one-click export of the current .md file to standalone HTML (with mermaid diagrams inlined) or PDF (via browser print dialog)

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:AnakinCao/dsh-md-export#5619392300540e9e2dc59c5ed3ed87091d09225d
READMECompatibilityVersions

Compatibility and provenance

Md Export is published as dsh-md-export and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/26/2026

Versions

0.1.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/26/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-md-export

简体中文:README.zh.md

DSH (DeepSeek Harness) Web plugin — Markdown export extension for dsh-better-sidebar.

Adds an Export button to the Markdown file viewer toolbar in better-sidebar. Click it to open a dropdown with two choices:

  • 📄 Save HTML (same directory) — Renders the current .md file into a standalone .html and writes it directly next to the .md file (Markdown tables / code blocks / Mermaid diagrams all inlined; layout follows the original md preview theme — not A4 print-oriented)
  • 🖨️ Export PDF (print) — Opens the browser print dialog (the printed content is the rendered document); choose "Save as PDF" to produce a PDF

Features

  • Zero-dependency, keeps built-in behavior: does not replace better-sidebar's built-in Markdown preview/edit (preview, edit, save and Mermaid rendering all remain); it only appends an export button to the toolbar
  • What you see is what you get: the exported HTML is taken directly from the built-in previewer's rendered DOM (including Mermaid SVG) — no second rendering pass
  • Saves next to the .md: writes the HTML into the md's directory via better-sidebar's /sidebar/api/fs.write channel (same basename, .html extension); falls back to a browser download if session detection fails
  • Layout follows the original md preview: the exported HTML uses the current preview theme's colors and typography (dark/light auto-follow), content width adapts — no A4 paper size
  • Edit-mode friendly: if you are in edit mode with unsaved content, export automatically switches to preview first
  • Auto-follow: the button appears on the Markdown toolbar whenever the file or preview/edit mode changes

Prerequisites

  • DSH dsh web running
  • dsh-better-sidebar installed (or the aggregator package @linxin666/dsh-web-ui-all that brings it in)

Install

dsh plugin --profile web add <dsh-md-export-0.1.0.tgz>

After installing, restart dsh web (a new bundle needs a host-side reload), then hard-refresh the browser (Cmd/Ctrl+Shift+R).

Open any .md file in the sidebar — the "Export ▾" button appears right next to the "Preview | Edit" toggle.

Usage

  1. Open any .md file in better-sidebar (e.g. docs/AOI端保存图片逻辑.md)
  2. Click the "Export ▾" button on the toolbar
  3. Choose:
    • Save HTML (same dir): the HTML is written next to the md (e.g. docs/AOI端保存图片逻辑.html), layout matches the md preview
    • Export PDF (print): the print dialog opens; choose "Save as PDF"

Development

node --check lib/client.js   # syntax check (hand-written single-file client bundle, no build step)
  • lib/index.js — host-side placeholder plugin (empty apply, so the loader entry mounts)
  • lib/client.js — client logic: MutationObserver watches the markdown toolbar → injects the export button + dropdown → grabs the preview DOM → saves next to the md via /sidebar/api/fs.write / triggers print

Implementation notes

StepHow
Button injectionMutationObserver watches document.body, finds .nArs4W_editorModeToggle (Markdown/HTML previewer toolbar) and injects when the current file is .md
Path resolutionTakes the md absolute path from the .nArs4W_editorPathInput title attribute; the output is the same directory + same basename + .html
Session detectionScans localStorage keys dsh-sidebar:v1:*, picks the newest sessionId
Save to same dirPOST /sidebar/api/fs.write (payload: sessionId + absolute path + HTML content); falls back to a browser download on failure
HTML layoutReads colors/fonts from .nArs4W_editorMd and the page theme; exported content width adapts (non-A4)
PDF exportWrites the same HTML into a hidden iframe → window.print() → user chooses "Save as PDF" in the print dialog

Known limitations

  • PDF export relies on the browser print feature (Chrome/Edge both support "Save as PDF"); it does not generate a .pdf binary directly, so PDF cannot be saved to the md directory
  • HTML save-to-same-dir depends on session detection (localStorage); in edge cases it falls back to a browser download
  • Depends on better-sidebar's internal CSS class names (nArs4W_ prefix); if a major better-sidebar upgrade changes the class names, this plugin needs a sync update
  • Only applies to .md files; .markdown extension is also supported

License

MIT