home / skills / openclaw / skills / intomd
This skill fetches documentation URLs and converts them to clean Markdown using into.md for easy offline reading and integration.
npx playbooks add skill openclaw/skills --skill intomdReview the files below or copy the command above to add this skill to your agents.
---
name: intomd
version: 1.0.0
description: Fetch and convert any documentation URL to Markdown using into.md service.
metadata: {"clawdbot":{"emoji":"📄","requires":{"bins":["curl"]}}}
---
# intomd
Use `intomd` to fetch clean markdown from a documentation site via into.md.
## Usage
```bash
# Fetch markdown
curl -sL "https://into.md/$1"
```
## Example
```bash
intomd https://zod.dev
```
This skill fetches and converts any documentation URL into clean Markdown using the into.md service. It provides a simple command-line helper to retrieve readable, portable Markdown copies of web-hosted docs. Use it to archive, inspect, or repurpose documentation with minimal setup.
The skill constructs a into.md request for the given documentation URL and returns the converted Markdown output. It sends a single HTTP GET to https://into.md/{target} and streams the resulting Markdown back to the caller. No local parsing is required; the service handles extraction and conversion to readable Markdown.
Do I need an account to use into.md via this skill?
No account is required for basic public usage; the skill issues a simple GET to the into.md endpoint for the provided URL.
Will converted Markdown always be perfect?
Conversion quality depends on the source site's structure. Review the output for formatting edge cases or missing assets and adjust or post-process as needed.