Show HN: MarkShow – Create Slideshows with Markdown
61–64 of 64 posts
Re: Show HN: MarkShow – Create Slideshows with Markdown
#62Re: Show HN: MarkShow – Create Slideshows with Markdown
#63Now if we can just get proper mindmapping in Markdown. I've tried all the libraries I could find and while they are pretty neat they still lack linking and other things like you'd get from XMind.
I've had trouble understanding the use case for mindmapping software, so I'd be curious to hear what you use Xmind for! I feel like I'd have to constantly fight with the layout to prevent my diagrams from turning into a big spaghetti mess. For most of the demos on their website, a simple nested list seems just as effective at communicating the same information.
Re: Show HN: MarkShow – Create Slideshows with Markdown
#64Looks nice. Related, if you already have Pandoc installed, you can get single markdown file => slideshow with Reveal.js (which the showcased site is based on) for free with pandoc -s -t revealjs slides.md -o slides.html You can choose other implementations too, like good old Slidy: pandoc -s -t slidy slides.md -o slides.html