agentsclimarketplace

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

Install
npx -y skills add bobadilla-tech/requiems-api-skills --skill markdown-post-batch

Assembled 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

NameTypeRequiredLocationDescription
markdownsarrayyesbodyArray of Markdown strings. Min: 1, Max: 50.
sanitizebooleannobodyWhen 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

FieldTypeDescription
resultsarrayOne HTML result per Markdown input, preserving input order
results[].htmlstringRendered HTML output for each Markdown string

Errors

  • 422 validation_failed — Body is invalid: empty array, more than 50 items, or invalid Markdown entry.
  • 400 bad_request — Missing or malformed request body.
  • 500 internal_error — Unexpected server error.

What ships with it

Read from the repository

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

Keep looking

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