← Back to Index

Markdown Server Setup

Dependencies

The markdown server requires the marked npm package for proper GitHub-flavored markdown rendering (including tables).

Installation:

cd /home/node/.openclaw/workspace
npm install marked

After container rebuild:
If the server fails to start after a rebuild, reinstall the dependency:

cd /home/node/.openclaw/workspace && npm install marked

Restart

# Kill old process
pkill -f markdown-server.js

# Start new process
cd /home/node/.openclaw/workspace && node tools/markdown-server.js 9876 . &

Access

Features