# Usage It is so easy that a monkey could do your presentation... ---
  1. new
  2. build
  3. serve
--- new - command --- build - command --- serve - command --- # Shortcut ```bash $ hyhyhy build --watch --serve ```
Pending changes and serves it on localhost:4000 --- # Structure You can modify and customize it. Tool generates static presentation to build directory. --- before ``` hyhyhy ├── _assets │ ├── javascripts │ │ └── main.js │ └── stylesheets │ └── main.css ├── _includes │ └── bower.json ├── _layouts │ └── default.erb ├── _slides │ ├── 1.introduction.md │ ├── 2.packages.md │ ├── ... │ └── n.html ├── .bowerrc ├── .hyhyhy └── README.md ``` --- after ``` hyhyhy ├── _build │ ├── _includes │ ├── javascripts │ │ └── main.js │ ├── stylesheets │ │ └── main.css │ └── index.html └── ... ``` --- # Slides Can be written in anything. Markdown, Textile, Text, HTML5... --- before ```markup # Hi! ––– id: black hole –––

Nice

––– END ``` --- after ```markup

Hi!

Nice

END
``` --- # Keyboard
  1. Press left arrow and right arrow to navigate.
  2. Press h to launch fullscreen.
  3. Press ESC to exit fullscreen mode.
  4. Browser zooming is supported.
  5. Touch events are supported.
--- # So... Ready to contribute?