For AI agents: a documentation index is available at https://docs.visk.com/llms.txt. The full text of all docs is at https://docs.visk.com/llms-full.txt. You may also fetch any page as Markdown by appending
Visk represents a presentation as HTML: a deck is a series of slides, each an ordinary HTML element styled with ordinary CSS. Plain HTML is valid Visk HTML, and everything below the basics is an addition on top of it.
Agents connected over MCP fetch this format themselves, so there’s no need to supply it. This page is for understanding what they’re working with.
.md to its URL.A slide
A slide is<slide> or <div class="slide">. The two are interchangeable. Slides are 960pt x 540pt (16:9), and all units are in points.
Theme CSS
The presentation stylesheet holds the deck’s theme. Editing it restyles the whole deck.var(--accent1).
A whole deck
To hand over an entire presentation at once, wrap slides in a<body> with a single <style> block:
<style> block rather than repeating it inline on every slide. There is no <html>, <head>, or external stylesheet, and no JavaScript.
Positioning
Normal document flow, flexbox and grid all work exactly as they do on the web. For absolute placement,box is shorthand in points:
box="l, t, w, h" is equivalent to position: absolute; left: l; top: t; width: w; height: h. It takes the element out of the flow, and it creates a new positioning context, so coordinates on nested elements resolve against the box rather than the slide.
Enhancements
Each of these maps to a native PowerPoint object, so the result stays editable after export.Attributes
Charts
Use<Chart> for any data visualisation. It maps to a native, editable PowerPoint chart. Supported types are line, bar, area, scatter, pie, radar, bubble and waterfall.
Connectors
Straight horizontal and vertical rules are just a<div> with border-top or border-left. To draw a line between two shapes, use <Connector>, where each endpoint is either a shape anchor or a coordinate:
variant for elbow and curved presets and waypoints to shift the bend. See Connectors for variants and diagram patterns.
Icons, flags and logos
Tables, lists and images
Real<table>, <ul> / <ol> and <img> elements each convert to the native PowerPoint equivalent, so a table arrives as a table and a list as a real bulleted list. Bullet colour is set with --bullet-color on the list.
Avoid nested shapes within tables, which aren’t valid in PowerPoint.
Speaker notes
<notes> as the last child of a slide:
Layouts and placeholders
Decks built on an existing master carry two special classes:inheritedshapes come from the layout. On a slide they can’t be modified or deleted, and reappear if you try.phshapes are placeholders. Keep the box and styling for titles and footers; body placeholders can be replaced with your own content, ideally reusing the same box.
data-ph-idx attribute carries the placeholder’s identity, and a shape that loses it no longer round-trips back to PowerPoint. See Layouts for placeholder types and deck-wide restyling.
What doesn’t convert
PowerPoint has no equivalent for these, so they’re unsupported:<script>, JavaScript, animations, hover and focus states- CSS-generated shapes via
::before/::after, or triangles built from borders andclip-path. Use inline SVG instead - SVG
foreignObject,filter,mask,pattern,animate,mix-blend-mode - SmartArt