Markdown post markdown
Skill bobadilla-tech/requiems-api-skills/skills/markdown-post-markdown
Converts a Markdown string to HTML. Pass sanitize true to strip potentially unsafe tags like script and iframe from the output.From its SKILL.md
npx -y skills add bobadilla-tech/requiems-api-skills --skill markdown-post-markdownAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 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
1.3 KB, 280 tokens by cl100k_base, as published. Nobody here has run it
Endpoint
POST https://api.requiems.xyz/v1/technology/markdown
Convert Markdown to HTML
Converts a Markdown string to HTML. Pass sanitize true to strip potentially unsafe tags like script and iframe from the output.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
markdown | string | yes | body | The Markdown text to convert. |
sanitize | boolean | no | body | When true, sanitizes the HTML output to remove unsafe tags and attributes. |
Request Example
{
"markdown": "# Hello\n\nThis is **bold** and _italic_ text.",
"sanitize": true
}
Response Example
{
"data": {
"html": "<h1>Hello</h1>\n<p>This is <strong>bold</strong> and <em>italic</em> text.</p>\n"
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
html | string | The rendered HTML output |
Errors
undefined422 — undefined
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.