# marp **Repository Path**: acceos/marp ## Basic Information - **Project Name**: marp - **Description**: Markdown presentation writer, powered by Electron. - **Primary Language**: CoffeeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-11-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Marp === **Markdown presentation writer, powered by [Electron](http://electron.atom.io/).** ![Marp](screenshot.png) ## Usage ### Install :arrow_forward: **[Download latest archives from release page.](https://github.com/yhatt/marp/releases)** - **Windows**: Unzip `*.*.*-Marp-win32-[arch].zip` and run `Marp.exe`. - **Mac OS X**: Mount `*.*.*-Marp-darwin-x64.dmg`, D&D `Marp` to `Applications` and run it from Applications folder / Launchpad. - **Linux**: Unpack `*.*.*-Marp-linux-[arch].tar.gz` and run `Marp`. ### How to write slides? Split slides by horizontal ruler `---`. It's very simple. Please refer to [example.md](https://raw.githubusercontent.com/yhatt/marp/master/example.md). ```md # Slide 1 foobar --- # Slide 2 foobar ``` ## For developers ### Getting started ``` npm install npm start ``` ### Create release builds ``` gulp release ``` Please set application version in `package.json`. #### OS specific ##### Windows If you want to build for Windows in other platforms, please install [Wine](https://www.winehq.org/) to rewrite Electron's resources. ##### OSX To build for Darwin is only supported in OSX. Please install [appdmg](https://github.com/LinusU/node-appdmg) to create archive (`.dmg`) for Darwin release. ``` npm install appdmg ``` ###### Notices - **Don't add development dependency of `appdmg` to `package.json`.** The release task would fail in other platforms. - *`gulp-appdmg` is no longer in use since v0.0.4.* ## Licenses Copyright © 2016 [Yuki Hattori](https://github.com/yhatt). This software released under the [MIT License](https://github.com/yhatt/marp/blob/master/LICENSE).