- Each # or ## heading starts a new slide.
- All #, ##, and ### headings are rendered with figlet, if installed.
- All #, ##, ###, and #### headings are centered horizontally.
- Bold text, italicized text,
inline code
, and links are highlighted according to the built-in markdown syntax rules and colorscheme.
Start presenting:
:PresentingStart
Navigation:
- n - next slide
- p - previous slide
- q - quit
To format tables, they must be manually spaced, and include vertical bars, not only between the columns, but also as the left and right edges.
Last Name | First Name | Born | Bacon Number |
---|---|---|---|
Bacon | Kevin | 1958 | 0 |
Chan | Jackie | 1954 | 2 |
Reagan | Ronald | 1911 | 2 |
Ryan | Meg | 1961 | 1 |
Saldaña | Zoë | 1978 | 2 |
Schwarzenegger | Arnold | 1947 | 2 |
Temple | Shirley | 1928 | 3 |
Lists can be ordered, unordered, or To Do list items. As a reminder, here is the markup for each type of list.
1. numbered item
1. numbered sub-item
* bulleted item
- bulleted item
- [ ] unchecked item
- [ ] unchecked sub-item
- [x] checked item
- [x] checked sub-item
- [X] checked item
Numbers are recalculated and incremented as you'd expect.
- First 2. Part a 3. Part b
- Second
Bullets are rendered with a Unicode bullet.
- milk
- bread
- wheat
- sourdough
- eggs
Checkboxes are rendered with Unicode as either empty or filled squares.
- Not done yet
- Task 1
- Task 2
- Done
- Task 1
- Task 2
These are part of Github-flavored Markdown, not the official Markdown specification.
Paragraphs and quotes are word wrapped on word boundaries. Quotes are indented and have a left vertical border.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ullamcorper dignissim cras tincidunt lobortis. Nam aliquam sem et tortor consequat id porta nibh. Venenatis a condimentum vitae sapien pellentesque habitant morbi tristique. Mi ipsum faucibus vitae aliquet nec ullamcorper. Viverra mauris in aliquam sem fringilla. Pharetra sit amet aliquam id diam maecenas ultricies mi.
Vitae proin sagittis nisl rhoncus mattis rhoncus. Mauris rhoncus aenean vel elit scelerisque. Eu volutpat odio facilisis mauris sit. Commodo quis imperdiet massa tincidunt nunc pulvinar sapien et. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Code blocks can be syntax highlighted, but not in-line code
.
" Hello World (without syntax highlighting)
function HelloWorld()
echomsg "Hello World!"
endfunction
" Calculate n! (with syntax highlighting)
function Factorial(n)
return a:n<=0 ? 1 : a:n * Factorial(a:n-1)
endfunction