WayneBuckhanan / remark-redux

A simple, in-browser, markdown-driven slideshow tool.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remark-redux

A simple, in-browser, markdown-driven slideshow tool targeted at people who know their way around HTML and CSS.

Featuring:

  • Markdown formatting, with smart extensions
  • Presenter mode with markdown formatted speaker notes and cloned slideshow view
  • Syntax highlighting, supporting a range of languages
  • Slide scaling, thus similar appearance on all devices / resolutions
  • Simple markdown templates for customized slides
  • Touch support for smart phones and pads, i.e. swipe to navigate slides

Check out the original remark project or this remark slideshow for a brief introduction.

This Version

Based on the lack of recent updates to the gnab/remark repo, I [WLB] am collecting the various patches and updates from across the Github and integrating them here.

The biggest leap is the refactoring done by GM-Alex. Here's what GM-Alex said here:

This is a refactored version using ES6, adds i18n support, switches from less to sass, uses webpack, ports the slide transitions, the progress bar and the controls from reveal.js and adds some additional functionality. ... I also add an easy way to use columns just use || as separator and it will make a new column at the same slide. ... The options are (with defaults):

const defaults = {
  sourceUrl: null,
  ratio: '4:3',
  highlightStyle: 'default',
  highlightLines: false,
  highlightSpans: false,
  highlightInlineCode: false,
  highlightLanguage: '',
  slideNumberFormat: '%current% / %total%',
  cloneTarget: '_blank',
  excludedClasses: [],
  countIncrementalSlides: true,
  macros: {},
  transition: false,
  transitionSpeed: false,
  slideNumber: false,
  progressBar: false,
  controls: false,
  controlsTutorial: false,
  controlsLayout: 'bottom-right',
  controlsBackArrows: 'faded',
  folio: false,
  allowControl: true,
  navigation: {},
  translations: {}
};

or the ported settings (controls, transition, progress bar), see https://github.com/hakimel/reveal.js/#configuration. allowControl disable the controller, useful for the new function SlideShow::setState which allows you to set the state (current slide, pause, blackout, mirrored). SlideShow::getState returns the current state. folio false makes the presentation full screen, true is the old style.

Building This Version

GM-Alex also ported from node make to webpack, which means the build instructions have changed.

git clone https://github.com/WayneBuckhanan/remark-redux.git
cd remark-redux
npm install --save-dev webpack
npm install --save-dev webpack-cli
npm run-script build

The remark library will now be in build/remark.min.js and can be placed alongside your HTML and Markdown as seen below in the "Getting Started" section.

You can also use npm run-script build:dev to get an unminified output for debugging purposes.

The move to webpack does mean that the standalone boilerplate with in-line javascript is not currently a target.

Getting Started with Remark

It takes only a few, simple steps to get up and running with remark:

  1. Create an HTML file to contain your slideshow (see boilerplate below)
  2. Open the HTML file in a decent browser
  3. Edit the Markdown and/or CSS styles as needed, save and refresh!
  4. Press C to clone a display; then press P to switch to presenter mode

See any of the boilerplate-*.html files, or just copy the boilerplate HTML below to start:

<!DOCTYPE html>
<html>
  <head>
    <title>Title</title>
    <meta charset="utf-8">
    <style>
      @import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
      @import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
      @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);

      body { font-family: 'Droid Serif'; }
      h1, h2, h3 {
        font-family: 'Yanone Kaffeesatz';
        font-weight: normal;
      }
      .remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
    </style>
  </head>
  <body>
    <textarea id="source">

class: center, middle

# Title

---

# Agenda

1. Introduction
2. Deep-dive
3. ...

---

# Introduction

    </textarea>
    <script src="https://remarkjs.com/downloads/remark-latest.min.js">
    </script>
    <script>
      var slideshow = remark.create();
    </script>
  </body>
</html>

How To Use remark

The wiki pages contain all the how-to, templating, and API help.

Real-world remark slideshows

On using remark:

Other interesting stuff:

Other systems integrating with remark

Printing

Converting to PDF is primarily supported via Chrome's Print to PDF feature. Note that the styling is not exact; See #50 for some recommended CSS to add to your styles.

Alternatively, you can use DeckTape, a PDF exporter for HTML presentation frameworks that provides support for remark.

Contributors

License

remark and remark-redux are licensed under the MIT license. See LICENSE for further details.

About

A simple, in-browser, markdown-driven slideshow tool.

License:MIT License


Languages

Language:JavaScript 85.7%Language:CSS 13.3%Language:HTML 1.0%