← ClaudeAtlas

revealjs-markdownlisted

user wants to create markdown presentation with revealjs
Voronenko/ai-files · ★ 0 · Data & Documents · score 60
Install: claude install-skill Voronenko/ai-files
## General rules To create a reveal.js presentation Markdown, you specify the output format in the YAML metadata of your document. You can create a slide show broken up into sections by using the # and ## heading tags; you can also create a new slide without a header using a horizontal rule (---). For example, here is a simple slide show: ```md --- title: "Habits" author: John Doe date: March 22, 2005 --- # In the morning ## Getting up - Turn off alarm - Get out of bed ## Breakfast - Eat eggs - Drink coffee # In the evening ## Dinner - Eat spaghetti - Drink wine ## Going to sleep - Get in bed - Count sheep ``` ## Appearance and style There are several options that control the appearance of reveal.js presentations: theme specifies the theme to use for the presentation (available themes are "default", "simple", "sky", "beige", "serif", "solarized", "blood", "moon", "night", "black", "league", and "white"). highlight specifies the syntax highlighting style. Supported styles include "default", "tango", "pygments", "kate", "monochrome", "espresso", "zenburn", and "haddock". Pass null to prevent syntax highlighting. center specifies whether you want to vertically center content on slides (this defaults to false). smart indicates whether to produce typographically correct output, converting straight quotes to curly quotes, --- to em-dashes, -- to en-dashes, and ... to ellipses. Note that smart is enabled by default. For example: --- theme: sky highlight: pygment