Markdown to HTML Converter

PassAudited by ClawScan on May 12, 2026.

Overview

This instruction-only skill appears to be a normal Markdown-to-HTML reference, with user-directed command and install examples but no hidden code, credentials, or persistence.

This looks safe to use for Markdown conversion. Before following examples, review any package installs, choose explicit input and output paths, and sanitize untrusted Markdown before rendering it in a browser or publishing the generated HTML.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Following the setup examples may install third-party tools into the local development environment.

Why it was flagged

The skill documents installing an external Markdown converter package. This is user-directed and purpose-aligned, but users should trust the package source and version before installing global tools.

Skill content
1. Ensure marked is installed: `npm install -g marked`
Recommendation

Install only from trusted package managers, consider pinning versions for repeatable builds, and avoid running global installs unless needed.

What this means

If run with the wrong paths, conversion scripts could create or overwrite generated HTML files.

Why it was flagged

The reference includes a local Node.js script workflow for batch conversion. Running local scripts is expected for this converter skill, but it can read files from the chosen input directory and write output files.

Skill content
Run with: `node convert-all.js`
Recommendation

Review scripts and paths before running them, use a project-specific directory, and keep backups or version control for source documents.

What this means

Publishing or previewing untrusted Markdown as HTML without sanitization could expose viewers to unsafe embedded HTML.

Why it was flagged

The artifacts correctly note that Markdown conversion may produce unsafe HTML unless sanitized. This is a normal risk for Markdown renderers, especially with untrusted input.

Skill content
**Important:** gomarkdown does not sanitize HTML output. Use Bluemonday for untrusted input:
Recommendation

Sanitize untrusted Markdown output with a tool such as Bluemonday or DOMPurify, or disable raw HTML where possible before publishing.