Package Description
Get Started
$ dotnet add package slidesReadme
Instant Markdown slides for the busy man
Demo

Features
- zero configuration
- markdown to html slides pipeline
- development server with instant hot-reload
- uses reveal.js under the hood
Dependencies
.NET SDK to run the script
Get started
- create a
<name>.fsxfile with the contents
#r "nuget: Slides"
Slides.start(Settings.Default)
- run the script with
dotnet fsi <name>.fsx - start editing
src/index.md - view the slides at
http://localhost:8080or frompublic/index.html
Customization
- you can specify one of the default reveal themes as follows:
#r "nuget: Slides"
Slides.start (
{
Settings.Default with
Theme = Theme.White
// SourcePath = "path/to/folder"
// OutPath = "output/directory"
// Port = 5678
}
)
- for anything more complex either write html in markdown or use something else