Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 1005 Bytes

setup.rst

File metadata and controls

58 lines (36 loc) · 1005 Bytes

Setup

Requirements

requires Python 3.6+ (recommended 3.7+) and Sphinx.

Current development environment

  • Python: 3.10.x
  • Sphinx: 5.3.0

Installation

You can install from PyPI.

$ pip install sphinx-revealjs

specify Sphinx and docutils expressly as dependencies. You get Sphinx by this command only.

Configuration

does not provide revealjs builder instead of html builder. To use builder, edit your conf.py.

extensions = [
    "sphinx_revealjs",
]

if you want to configure more, edit conf.py with seeing ./configurations.

Build

Run make command to build presentations. Files are generated to revealjs folder.

$ make revealjs

You can generate all pages as index.html to use dirrevealjs.

make dirrevealjs