./nugetz
pkg

slidesv1.0.25

docs d<> code .compare c
.NET 7.0

Package Description

License

View license

Deps

5

Install Size

Vulns

✓ 0

Published

Sep 28, 2023

Get Started

$ dotnet add package slides

Readme

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>.fsx file 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:8080 or from public/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