ForbesLindesay-Unmaintained / reveal

The HTML Presentation Framework
Other
3 stars 0 forks source link

Request to provide also plugins files #1

Open stopsopa opened 6 years ago

stopsopa commented 6 years ago

When you try to follow this tutorial you gonna see that markdown syntax is working right from the box, because everything is properly configured and most important plugins files are provided.

I need to load reveal from npm though and this is only package that provides it from npm. (or maybe i'm wrong)

Unfortunately plugins are missing from this package.

My current configuration looks like (webpack bundled):

import './pages/presentation.scss';

import 'reveal/index.css'

import '../react/node_modules/reveal/theme/night.css'
import "reveal/theme/default.css";

import Reveal from 'reveal';

Reveal.initialize({
    controls: true,
    progress: true,
    history: true,
    center: true,
    // default/cube/page/concave/zoom/linear/fade/none
    // transition: 'none',
});

but i see that plugins are not loaded - probably i need to extend config like:

Reveal.initialize({
    dependencies: [
        { src: 'plugin/markdown/marked.js' },
        { src: 'plugin/markdown/markdown.js' },
        { src: 'plugin/notes/notes.js', async: true },
        { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
    ]
});

but as i mentioned there is no files to load in this package.

Thanks for you effort anyway. cheers : )

ForbesLindesay commented 6 years ago

This package is not currently maintained.

stopsopa commented 6 years ago

I see but i still had hope... :) So maybe it would be good idea to disable issue tracker for this repository. Cheers

ForbesLindesay commented 6 years ago

The issue tracker is here in case someone wants to take the project off my hands, they can open an issue to offer to maintain it.