Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 834 Bytes

README.adoc

File metadata and controls

53 lines (39 loc) · 834 Bytes

Ribose Presentations

Fetching Reveal.js

git submodule init
git submodule update

Creating A New Presentation

Copy one of the old directories into a new one.

Then:

cd new-presentation/
make Gemfile
bundle

Updating the Reveal.js ribose.css Stylesheet

From this exact directory.

Prepare npm for Reveal.js:

pushd reveal.js
npm install
npm install -g grunt
npm install -g decktape
popd

Regenerate the CSS:

cp revealjs-css/ribose.scss reveal.js/css/theme/source/
pushd reveal.js
grunt css-themes
popd
cp reveal.js/css/theme/ribose.css revealjs-css/

Rendering the Presentation

You can build an interactive Reveal.js presentation or a set of slides in PDF. Refer to README inside presentation directory on details.