agentsclimarketplace

Bx markdown

Skill ortus-boxlang/skills/boxlang-modules/bx-markdown

Use this skill when converting Markdown to HTML or HTML to Markdown in BoxLang using the bx-markdown module. Covers markdown() and HtmlToMarkdown() BIFs.From its SKILL.md

Install
npx -y skills add ortus-boxlang/skills --skill bx-markdown

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

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 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

2.2 KB, 550 tokens by cl100k_base, as published. Nobody here has run it

bx-markdown: Markdown Support

Installation

install-bx-module bx-markdown
# CommandBox
box install bx-markdown

BIFs

markdown( txt ) — Markdown → HTML

Converts 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 → Markdown

Converts 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 )

Common Usage Patterns

// 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 )

Common Pitfalls

  • markdown() returns an HTML fragment, not a full HTML document — embed it inside your page layout
  • ❌ Don't output user-provided markdown directly without sanitizing the resulting HTML (consider pairing with bx-jsoup for XSS protection)
  • HtmlToMarkdown() is useful for migrating rich-text editor content to a markdown-based system

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,537. 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.