Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

markdown2slides

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

markdown2slides

Write your slide deck in markdown without compromising stylability.

latest
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

markdown2slides

Markdown is great for content, but it's not ideal for create slide decks. Markdown doesn't provide a way to wrap each slide in a parent element, making it very difficult to style your slides with CSS.

markdown2slides is a node module, intended to be used in a grunt workflow, that lets your write your slideshow content in markdown without compromising stylability.

Installation

npm install markdown2slides

Usage

Write your slideshow content in a markdown file, using horizontal rules (---) to separate each slide:

slide 1

---

slide 2

---

slide 3

Use markdown2slides to convert your markdown file into an ordered list:

var slides = require('markdown2slides')('path/to/my-preso.md')

The value of slides is now an HTML string that looks like this:

<ol class="slides">
  <li>slide 1</li>
  <li>slide 2</li>
  <li>slide 3</li>
</ol>

Tests

npm test

Caveat Emptor

markdown2slides is intended to be used for static HTML site generation. It is blocky/synchronous/non-streamy. In other words, don't use it at runtime in your node apps.

FAQs

Package last updated on 17 Jan 2014

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