Live data from Hacker News

Marp: Markdown Presentation Writer

yhatt.github.io

21–30 of 98 posts

Re: Marp: Markdown Presentation Writer

#21
Don't have Github account so I can't place an issue there, but PDF export appears to fail with source-code listings in the Gaia theme.

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.

Re: Marp: Markdown Presentation Writer

#22
post #10
post #9

Earlier 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

Neat! Combine this with http://entrproject.org/ and https://github.com/cortesi/devd/releases for live-regenerating+reloading html output on md input changes :) . Or incrond, but entr feels great for this kind of ad-hoc workflow.

Re: Marp: Markdown Presentation Writer

#23
Shameless 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 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

#24
post #3

It could be even simpler. A presentation tool by the suckless folks with minimal dependencies but several features: http://tools.suckless.org/sent/

Also, there is http://trikita.co/slide for Android and a standalone https://github.com/trikita/slide-html with very similar goals

Re: Marp: Markdown Presentation Writer

#25
I make a lot of presentations, many of which include plot.ly plots. slides.com made it easy to embed iframes, and they are sized nicely on every device I've tried.

I 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

#26

I 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.

Reminds me of Neal Stephenson’s great essay, ”In the Beginning Was the Command Line”.

http://cristal.inria.fr/~weis/info/commandline.html

Re: Marp: Markdown Presentation Writer

#27
This is fantastic!

I'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

#29
post #23

Shameless 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…

a) looks cool b) i would be much more interested if the "example presentation" actually showed me a presentation, not some raw html. maybe use GitHub Pages to through up an example?
Post reply on HN