Install
openclaw skills install html-ppt-editorHTML PPT editor for visually editing local HTML slides, AI-generated HTML presentations, web slide decks, and saved HTML pages without touching source code. Use for "HTML PPT", "PPT editor", "edit PPT", "edit HTML", "HTML 编辑", "PPT 编辑", slide editing, text edits, and image replacement. It injects a self-contained editor into a local HTML copy so the user can edit text/images in the browser and download a clean HTML file. Do not use it for live online websites; ask for a saved local HTML file first.
openclaw skills install html-ppt-editorAlso searchable as: HTML PPT Editor, HTML Slides Editor, PPT Editor, Presentation Editor, HTML Editor, AI HTML PPT editor, 网页 PPT 编辑, HTML 编辑, PPT 编辑.
This skill turns a local .html file into an editable browser page by injecting the HTML Slide Mender runtime. It is intended for AI-generated HTML decks, HTML PPT outputs, and other local HTML pages where the user wants a visual editor instead of source-code edits.
.html files, including pages saved from a browserDo not target live websites directly. If the user asks to edit an online page, ask them to provide a saved local HTML copy or use the browser extension workflow instead.
node /path/to/this-skill/scripts/inject-html-editor.mjs /absolute/path/input.html
name.editable.html.The original HTML file is never modified by default.
node scripts/inject-html-editor.mjs <input.html> \
--out <output.html> \
--lang zh-CN \
--mode basic
--out: custom editable HTML output path.--lang zh-CN|en: editor language. Default: zh-CN.--mode basic|full: default export mode. basic keeps original external links; full tries to inline accessible CSS/images. Default: basic.--no-autostart: inject runtime but do not start the editor automatically.--preserve-csp: keep meta Content-Security-Policy tags. By default the editable copy removes CSP meta tags because they often block injected inline scripts.data-hsm-editor.basic mode, the final download starts from the original source HTML and applies content-layer edits to text/images/backgrounds instead of serializing the live runtime DOM. This avoids freezing slide-deck runtime state such as generated navigation dots or the currently translated slide.--mode basic unless the user specifically wants a bundled single HTML.--mode full, but warn that browser security may prevent bundling some cross-origin or inaccessible assets.User: "我想编辑 /Users/me/deck.html。"
Run:
node /path/to/this-skill/scripts/inject-html-editor.mjs /Users/me/deck.html --lang zh-CN --mode basic
Then open /Users/me/deck.editable.html and let the user edit in the browser.