refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -7,7 +7,7 @@ read_when:
---
# Markdown formatting
Moltbot formats outbound Markdown by converting it into a shared intermediate
OpenClaw formats outbound Markdown by converting it into a shared intermediate
representation (IR) before rendering channel-specific output. The IR keeps the
source text intact while carrying style/link spans so chunking and rendering can
stay consistent across channels.
@@ -39,7 +39,7 @@ stay consistent across channels.
Input Markdown:
```markdown
Hello **world** — see [docs](https://docs.molt.bot).
Hello **world** — see [docs](https://docs.openclaw.ai).
```
IR (schematic):
@@ -51,7 +51,7 @@ IR (schematic):
{ "start": 6, "end": 11, "style": "bold" }
],
"links": [
{ "start": 19, "end": 23, "href": "https://docs.molt.bot" }
{ "start": 19, "end": 23, "href": "https://docs.openclaw.ai" }
]
}
```