Skip to content
This repository was archived by the owner on Aug 6, 2023. It is now read-only.

Files

Latest commit

f614cc1 · Mar 17, 2019

History

History
64 lines (42 loc) · 1.11 KB

slides.md

File metadata and controls

64 lines (42 loc) · 1.11 KB

Deck, a minimalist presentation tool


Built with Rust


Thanks to


Syntax highlighting

fn main() {
  // Read input from stdin
  let mut input = String::new();
  io::stdin().read_to_string(&mut input).unwrap();

  // Load syntax and theme
  let syntax_set = SyntaxSet::load_defaults_newlines();
  let theme_set = ThemeSet::load_defaults();
  let theme = &theme_set.themes["base16-ocean.dark"];
}

List

  1. First
  2. Second
  3. Third

Bullet points

  • First
  • Second
  • Third

Tables

Col1 Col2 Col3
Row11 Row12 Row13
Row21 Row22 Row23

Quote

Be the change that you wish to see in the world.