Developer Utilities Post Markdown

Convert a Markdown string to HTML. Useful for rendering user-submitted content, documentation previews, or README files.

gabrielmoreira Updated 17 repo stars

File contents

Endpoint

POST https://requiems.xyz/v1/technology/markdown

Render Markdown

Convert a Markdown string to HTML. Useful for rendering user-submitted content, documentation previews, or README files.

Parameters

Name Type Required Location Description
text string yes body Markdown string to render

Request Example

{
  "text": "# Hello\n\nThis is **bold** text."
}

Response Example

{
  "data": {
    "html": "<h1>Hello</h1>\n<p>This is <strong>bold</strong> text.</p>"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}

Response Fields

Field Type Description
html string Rendered HTML output

Errors

  • undefined 400 — text field is missing or empty
  • undefined 401 — Missing or invalid API key

gabrielmoreira/agent-skills-mirror/tree/main/mirrors/repos/bobadilla-tech@requiems-api-skills/skills/developer-utilities-post-markdown commit 54375b06ca

Frequently asked questions

npx skillmds@latest add gabrielmoreira/developer-utilities-post-markdown