Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Source → HTML,无需登录。
POST /api/render Content-Type: application/json { "kind": "deck", "source": "---\nmarp: true\n...", "workspace": [], "themeOverride": "plain-mono", "customTokens": null, "animate": true, "readOnly": true }
kind
source
workspace
themeOverride
customTokens
animate
readOnly
Content-Type: text/html
const res = await fetch('https://inplain.app/api/render', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ kind: 'deck', source, readOnly: true }), }); const html = await res.text(); iframe.srcdoc = html;
/showcase