Markdown post batch
Skill bobadilla-tech/requiems-api-skills/skills/markdown-post-batch
Converts multiple Markdown strings into HTML in a single request. Results are returned in the same order as the input array. Supports optional sanitization to remove unsafe HTML tags such as script and iframe.From its SKILL.md
npx -y skills add bobadilla-tech/requiems-api-skills --skill markdown-post-batchAssembled 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.8 KB, 399 tokens by cl100k_base, as published. Nobody here has run it
Endpoint
POST https://api.requiems.xyz/v1/technology/markdown/batch
Convert Markdown Batch
Converts multiple Markdown strings into HTML in a single request. Results are returned in the same order as the input array. Supports optional sanitization to remove unsafe HTML tags such as script and iframe.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
markdowns | array | yes | body | Array of Markdown strings. Min: 1, Max: 50. |
sanitize | boolean | no | body | When true, sanitizes HTML output to remove unsafe tags and attributes. |
Request Example
{
"markdowns": [
"# Hello",
"**bold**",
"- item one"
],
"sanitize": true
}
Response Example
{
"data": {
"results": [
{ "html": "<h1>Hello</h1>" },
{ "html": "<p><strong>bold</strong></p>" },
{ "html": "<ul>\n<li>item one</li>\n</ul>" }
]
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
results | array | One HTML result per Markdown input, preserving input order |
results[].html | string | Rendered HTML output for each Markdown string |
Errors
422validation_failed — Body is invalid: empty array, more than 50 items, or invalid Markdown entry.400bad_request — Missing or malformed request body.500internal_error — Unexpected server error.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.