-
-
Save RimonEkjon/af1c8e2d52b71400d51f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
presentation | |
.title('My Great Presentation') | |
.slide({ | |
title: 'Learn About Borders', | |
bullets: [ | |
'Thing 1', | |
'Thing 2', | |
], | |
code: ['path/to/file.css', [2,4]] // path to file, lines to grab | |
}) | |
.slide({ | |
title: 'Learn About Margins', | |
quote: 'Always remember bla bla', | |
transition: 'fade' // optionally specify transitions | |
}) | |
.slide({ | |
title: 'Learn About Things', | |
body: 'Description that goes below the title', | |
code: ['path/to/snippet', [0,3]] // path, lines | |
}) | |
.slide({ | |
title: 'Learn About Whatever', | |
image: 'path/to/image.jpg' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment