Install
openclaw skills install @yuvadm/markdown-publishPublishes Markdown to a public URL and returns the link. Use when the user asks to share, publish, host, or get a link for a page — or when you have produced a long page that is better delivered as a link than pasted inline. No authentication required. Pages are public and cannot be edited after publishing, so do not publish secrets or private data.
openclaw skills install @yuvadm/markdown-publishPublish Markdown to a public URL. Browsers receive HTML; command-line tools and agents receive plain text. No account or API key required.
Pages are public and cannot be edited after publishing. Use your judgment about whether the user's request and content are appropriate to publish. To correct a page, publish a new one; removal can be requested through the page's report link.
.md file.curl https://markdown.page/api/publish --data-binary @PATH_TO_FILE.md
.md to that URL.Do not claim success unless the command succeeds and returns a https://markdown.page/... URL. For HTTP 429, explain that the fair-use rate limit was reached, back off before at most one retry, and do not loop.
https://markdown.page/{slug}https://markdown.page/{slug}.mdAccept: text/plain receives plain text; .md always returns source Markdownhttps://, http://, or mailto:Typical errors: 400 malformed or unsupported body; 413 page or request envelope exceeds its limit; 415 unsupported content type; 429 fair-use rate limit.
Official references: agent guide, API reference, and FAQ.