bx-markdown — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bx-markdown (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
install-bx-module bx-markdown
# CommandBox
box install bx-markdownmarkdown( txt ) — Markdown → HTMLConverts a Markdown string to HTML using the Flexmark library.
html = markdown( "# Hello World" )
// Returns: <h1>Hello World</h1>
html = markdown( "**Bold** and _italic_ text" )
// Returns: <p><strong>Bold</strong> and <em>italic</em> text</p>
// Multi-line markdown
content = "
# Title
A paragraph with **bold** text.
- Item one
- Item two
- Item three
"
html = markdown( content )HtmlToMarkdown( markup ) — HTML → MarkdownConverts an HTML string to Markdown.
md = HtmlToMarkdown( "<h1>Hello World</h1>" )
// Returns: # Hello World
md = HtmlToMarkdown( "<p><strong>Bold</strong> and <em>italic</em></p>" )
// Returns: **Bold** and _italic_
// Convert a full HTML page body to Markdown
body = "<h2>Section</h2><p>Content with a <a href='https://boxlang.io'>link</a>.</p>"
md = HtmlToMarkdown( body )// Render user-authored markdown content safely
post = queryExecute( "SELECT content FROM posts WHERE id = :id", { id: postId }, { returntype: "array" } )
renderedHtml = markdown( post[1].content )
writeOutput( renderedHtml )
// Store HTML from markdown in DB
rawMarkdown = form.postContent
storedHtml = markdown( rawMarkdown )
queryExecute(
"INSERT INTO posts (markdown_content, html_content) VALUES (:md, :html)",
{ md: rawMarkdown, html: storedHtml }
)
// Read markdown from a file and render
content = fileRead( "/app/docs/readme.md" )
html = markdown( content )markdown() returns an HTML fragment, not a full HTML document — embed it inside your page layoutbx-jsoup for XSS protection)HtmlToMarkdown() is useful for migrating rich-text editor content to a markdown-based system~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.