Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jledentu/generator-reveal

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jledentu/generator-reveal

Yeoman generator for creating presentations using reveal.js and Webpack

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Reveal.js generator

Build Status

Yeoman generator for creating presentations using reveal.js and Webpack.

Usage

Install yo and @jledentu/generator-reveal:

npm install -g yo @jledentu/generator-reveal

Run the generator:

mkdir my-presentation && cd my-presentation
yo @jledentu/reveal

After generation:

  • Run npm start to start the development server
  • Run npm run build to build the app in dist/
  • Run npm run pdf to build the PDF output

Writing slides

To add a new slide in the presentation, create a new file in src/public/slides and add a slide section in src/index.ejs:

<div class="reveal">
  <div class="slides">
    <section data-markdown="slides/title.md"
      data-separator="^\r?\n---\r?\n$" data-separator-vertical="^\r?\n--\r?\n$"
      data-separator-notes="^Note:"
      data-charset="utf-8">
    </section>
    <!-- Add a section here -->
  </div>
</div>

For more information, see https://github.com/hakimel/reveal.js.

License

MIT

Keywords

FAQs

Package last updated on 27 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc