agentsclimarketplace

Markdown to html

Skill eugenelim/agent-ready-repo/packs/converters/.apm/skills/markdown-to-html

Convert a Markdown file to a self-contained, styled HTML page (sticky header, sidebar nav, syntax-highlighted code, callout boxes, Mermaid diagrams, print-ready). Use when the user asks to render, convert, or export a `.md` file as a shareable HTML document -- not for slides, presentations, or pitch decks. Rendering is deterministic via `marked` + `highlight.js`; the agent only invokes the script.From its SKILL.md

Install
npx -y skills add eugenelim/agent-ready-repo --skill markdown-to-html

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.0 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Markdown to HTML

A thin wrapper around scripts/render.js. The renderer parses Markdown deterministically with marked + highlight.js, post-processes for callouts and table wraps, builds a sidebar nav and print TOC from heading IDs, and stamps everything into scripts/template.html.

Output rendering

Key–value / one record — For a single record's fields, use an aligned key: value list, not a two-row table.

Instructions

You are not the renderer. The script is. Invoke it and report the path.

Step 1 — Verify dependencies

The renderer needs Node.js and the marked + highlight.js packages (pinned in package.json). From the skill's own directory, check whether they're already installed:

node -e "require.resolve('marked'); require.resolve('highlight.js')"
  • Exit 0 → dependencies present; go to Step 2.

  • Non-zero → not installed yet. Confirm npm is available (npm --version); if it isn't, tell the user to install Node.js and stop. If it is, ask the user before installing, then run the one-time install and re-verify — don't assume it succeeded:

    npm install   # installs the pinned marked + highlight.js
    node -e "require.resolve('marked'); require.resolve('highlight.js')"
    

(The install is one-time; subsequent runs are cached in node_modules/.)

Note: if your installer drops this skill into a tracked directory, add the skill's node_modules/ to your project's .gitignore to avoid committing the npm install artifacts.

Step 2 — Render

node scripts/render.js <input.md> [--output OUT.html] [--title T] [--subtitle S] [--theme NAME] [--no-mermaid]
FlagMeaning
--output FILEOutput path. Default: input with .html extension.
--title TEXTPage title. Default: first H1, then filename.
--subtitle TEXTHeader subtitle (small grey text next to the title).
--theme NAMEnavy (default), green, teal, amber, rose.
--no-mermaidSkip the Mermaid CDN script (for sources with no diagrams).

The script writes the HTML and prints three lines to stdout:

OUTPUT: /path/to/file.html
SECTIONS: <number of h2/h3 anchors built>
MERMAID: yes|no

Surface the output path to the user and the section/mermaid summary if relevant.

Step 3 — What the renderer handles automatically

  • Headings get stable id attributes used by sidebar links and the print TOC. Don't rewrite the markdown's headings.
  • Code blocks are syntax-highlighted via highlight.js. Fenced blocks tagged ```mermaid pass through as <div class="mermaid"> for the runtime CDN renderer.
  • Tables are wrapped in <div class="table-wrap"> for horizontal scrolling on narrow viewports.
  • Callouts: paragraphs that begin with **Note:**, **Tip:**, **Warning:**, **Important:**, or **Stop:** are wrapped in a styled callout box. Don't try to add HTML manually — the script detects the bold lead-in.
  • Print: every output includes an @media print block that hides the sidebar, builds a single-page TOC, and preserves background colors. Ctrl+P → Save as PDF works out of the box.

Don't

  • Don't write your own HTML. The script is the renderer; if the output is wrong, fix the script (or the template).
  • Don't pre-process the markdown by hand. The renderer expects raw Markdown including any **Note:** lead-ins.
  • Don't pass --theme unless the user asked for a specific accent color. navy is the default for a reason.
  • Don't suggest pasting the rendered HTML into chat. Open the output file in a browser.

Edge cases

  • Missing dependencies: node scripts/render.js exits 1 with an install hint. Follow Step 1 — install on consent, then re-verify; don't install bare.
  • No headings: sidebar shows (no sections). Output still works, the sidebar just stays empty.
  • Custom theme requested by name not in the list: the script exits with the list of valid choices. Ask the user which to use; don't invent a sixth.
  • Source contains a Mermaid block but you want fully offline output: pass --no-mermaid and the diagram will fall back to a plain <pre>.
  • Trust model: the renderer assumes the input markdown is the user's own document. Marked's default behavior is to pass through raw HTML embedded in markdown (e.g., a <script> tag in a .md file lands in the output as-is). This is fine for documents you authored; do not use this skill to render markdown from untrusted sources without a separate sanitization step.

What ships with it: 6 files

32.6 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,834. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.