ikiwiki/doc/plugins/contrib/remark.mdwn

32 lines
1.3 KiB
Plaintext
Raw Normal View History

[[!template id=plugin name=remark author="[[schmonz]]"]]
2016-02-20 09:24:07 +01:00
[[!template id=gitbranch branch=schmonz/remark.js author="[[schmonz]]"]]
[[!tag type/format]]
[Remark.js](http://remarkjs.com) makes web slides from Markdown. This
plugin integrates Remark into ikiwiki. Simply write `your_slides.remark`
instead of `your_blog_post.mdwn`, separating slides with `---`.
To set shared styles across all presentations on your site, put them in
a top-level `remarklocal.css`. To set per-presentation styles, use the
[[localstyle]] plugin as usual.
## Problem: `inline`
Web slides are sort of a regular web page, but not exactly: no action
links, and almost none of the other accoutrements of `page.tmpl`. The
branch's current behavior is that Remark slides are naively inlined like
any other page, which -- because the Markdown is deliberately not being
rendered by ikiwiki -- results in the slide source being displayed (and
not elegantly). Clicking through to the slides works right, of course.
2016-03-21 23:34:51 +01:00
See [[Discussion#inline]].
2016-03-22 07:45:03 +01:00
## Problem: safety of web-editing
2016-03-22 07:45:03 +01:00
This plugin is not currently safe for wikis where `.remark` pages can be
edited by untrusted users; the [[plugins/htmlscrubber]] is unlikely to be
able to prevent cross-site scripting in this plugin. Make sure only trusted
(administrative) users can create or edit `.remark` pages.
2016-03-21 23:34:51 +01:00
See [[Discussion#editing]].