Files
gh-nicknisi-claude-plugins-…/skills/conference-talk-builder/references/ia-presenter-syntax.md
2025-11-30 08:43:53 +08:00

3.8 KiB

iA Presenter Markdown Syntax

Quick reference for creating slides in iA Presenter.

CRITICAL: Tabbing Rules

MUST be tabbed to appear on slides:

  • Regular paragraphs
  • Lists (bullets, numbered, tasks)
  • Block quotes
  • Definition lists
  • Tables
  • Images

NO TAB needed (appear on slides automatically):

  • Headers (#, ##, ###, etc.)
  • Horizontal rules (---)
  • Fenced code blocks (```)
  • Math blocks ($$)

Never appears on slides:

  • Comments (//)

Slide Structure

Create New Slides

---

Use horizontal rules to split slides. No tab needed.

Headings

# Heading 1

## Heading 2

### Heading 3

Headers appear on slides automatically. No tab needed.

Text on Slides

Regular paragraphs MUST be tabbed to appear on slides:

⇥This text will appear on the slide.
⇥
⇥This is another paragraph on the slide.

Without tabs, text is spoken only (speaker notes):

This text is only for the speaker to read.

Text Formatting

Inside tabbed paragraphs:

⇥**bold text**
⇥*italic text*
⇥~~strikethrough~~
⇥==highlighted text==

Superscript and subscript:

⇥100m^2
⇥y^(a+b)^
⇥x~z

Lists

Lists MUST be tabbed to appear on slides:

⇥- Item one
⇥- Item two
⇥- Item three

Numbered lists:

⇥1. First item
⇥2. Second item
⇥3. Third item

Task lists:

⇥- [ ] Unchecked task
⇥- [x] Completed task

Nested lists:

⇥- Main item
⇥ - Nested item
⇥ - Another nested item

Block Quotes

Block quotes MUST be tabbed:

⇥> This quote appears on the slide

Definition Lists

Definition lists MUST be tabbed:

⇥Term
⇥: Definition of the term
⇥: Another definition

Code

Inline Code

⇥Use `keyword` for inline code within a paragraph

Code Blocks

Fenced code blocks appear on slides automatically. NO TAB needed:

```typescript
function hello() {
  console.log('Hello');
}
```

Language tags are optional but recommended for syntax highlighting.

Images

Images MUST be tabbed and added to Media Manager first:

⇥![Alt text](filename.png)

Note: Encode spaces as %20. Omit leading slash.

Tables

Tables MUST be tabbed:

⇥| Name | Price | Tax |
⇥|:--|--:|--:|
⇥| Widget | 10$ | 1$ |
⇥| Gift | 0$ ||

Alignment:

  • Left: :--
  • Right: --:
  • Center: :-:

Math

Math blocks appear on slides automatically. NO TAB needed:

Inline math (needs surrounding text tabbed):

⇥An example of math $x+y^2$ within text.

Block math:

$$
\displaystyle \frac{1}{x}
$$

Comments

Comments are only visible in the editor:

// This is a speaker note or reminder

Links within tabbed content:

⇥Visit [this site](https://example.com) for more info.

Footnotes:

⇥Text with footnote[^1].
[^1]: Footnote content.

Citations:

⇥Statement with source[p. 23][#Doe:2006].
[#Doe:2006]: Author. _Title_. Publisher, Year.

Complete Slide Example

# Slide Title

// This is a speaker note - not visible on slide

⇥This paragraph appears on the slide because it's tabbed.

⇥Key points:
⇥- First point
⇥- Second point
⇥- Third point

```typescript
// Code blocks don't need tabs
function example() {
  return 'This appears on slide automatically';
}
```

Next Slide

⇥More content here...


## Best Practices

1. Tab all regular content (paragraphs, lists, quotes, tables, images)
2. Don't tab headers, code blocks, or math blocks
3. Use comments for speaker notes
4. Break complex code across multiple slides
5. Test that all visible content is properly tabbed