Otherwise, this application is simple and to the point for making quick slide sets. I wonder if someone will invest the time to make a Go-lang style slide theme.
Marp: Markdown Presentation Writer
21–30 of 98 posts
Re: Marp: Markdown Presentation Writer
#22Earlier quoted context omitted.
Clarification: reveal.js supports markdown for individual slides. This project (Marp) allows you to write your whole presentation in a single markdown document. (Using just "---" to separate slides instead of repeating: slide markdown goes here ...seems like a productivity win IMO)
You can just use Pandoc to output reveal.js HTML for you. pandoc hello.md -t revealjs -o hello.html
Re: Marp: Markdown Presentation Writer
#23It doesn't ship it's own editor, because everyone already has a favorite(for me that's formerly vim, now Emacs). It's only static files, so it doesn't need a server or pre-compilation. It's extensible, has syntax highlighting and produces PDFs for the students. Also, it's only a mash up of great existing libraries, so it needs no maintainance and further development. One of the few pieces of software that I wrote which are feature complete^^
A couple friends(also lecturers) and I have been using it for about five years now.
Re: Marp: Markdown Presentation Writer
#24It could be even simpler. A presentation tool by the suckless folks with minimal dependencies but several features: http://tools.suckless.org/sent/
Re: Marp: Markdown Presentation Writer
#25I used to think text was the future for making slides, but then I realized I cared too much about exactly how my slide looked, and a WYSIWYG saves a ton of time if you want that level of control.
Re: Marp: Markdown Presentation Writer
#26I like the way our tools went from Text -> Graphical interface -> Text You can see this with all the CLI tools being introduced for traditional programs. I suppose people appreciate control and automation.
Re: Marp: Markdown Presentation Writer
#27I've been working for a bit on a project for converting mind maps into slides. One feature I really liked was changing the level of depth of items.
Let me try to explain what I mean. Say you're brainstorming and create a tree/toc of your slides. Then you start filling in the items for each slide. While you're doing so, you realize that slideA requires more details, so you turn the slide into a section and it's items into slides. Similarly, another section with multiple slides becomes less important, so you turn that section into a slide slideB and its slides into items of slideB.
The reason I like mind maps/trees is that these operations can be easily done by changing the level of depth of the items, e.g. via drag & drop.
I really like this idea of a simple markup for creating slides (plus the fact that it's text, so easy to version), and if this feature of making easy to change the level of depth of items could be integrated I think this would be a super plus!
Re: Marp: Markdown Presentation Writer
#28Re: Marp: Markdown Presentation Writer
#29Shameless plug: I'm a lecturer and have scratched this itch some time ago with a pet project that a couple lecturers are using now: https://github.com/munen/p_slides/ It doesn't ship it's own editor, because everyone already has a favorite(for me that's formerly vim, now Emacs). It's only static files, so it doesn't need a server or pre-compilation. It's extensible, has syntax highlighting and produces PDFs for the s…
Re: Marp: Markdown Presentation Writer
#30I've been using Bespoke.js [1]. Minimal core, and drop in plugins as needed. I also made a skeleton for quickly making new decks [2].