Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steel1990/markdown-impress
A tool to convert markdown to impress page.
https://github.com/steel1990/markdown-impress
Last synced: about 2 months ago
JSON representation
A tool to convert markdown to impress page.
- Host: GitHub
- URL: https://github.com/steel1990/markdown-impress
- Owner: steel1990
- Created: 2014-06-13T08:28:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-25T11:10:08.000Z (almost 9 years ago)
- Last Synced: 2024-11-10T02:54:36.930Z (2 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 19
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Markdown-Impress
-----------------------------
## What is it
*markdown-impress* is a tool to convert markdown to impress page.-----------------------------
## How to install
+ Firstly you should install [nodejs](http://nodejs.org)
+ Then install it use `$ npm install -g markdown-impress`-----------------------------
## Markdown format
+ use `------` to separate each slide
+ use comment to set impress attr, such as ``
+ [this page](http://steel1990.github.io/markdown-impress/) is made by *markdown-impress* use [this markdown](https://raw.githubusercontent.com/steel1990/markdown-impress/master/README.md).-----------------------------
## How To Use
![How to use mtoi](./mtoi-help.png)-------------------------------
## Use in your code
var fs = require('fs');
var mtoi = require('markdown-impress');
var content = mtoi('file.md');
fs.writeFileSync('file.html', content);