Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/praveenpuglia/gulp-gfmtoconf
Converts Github Flavoured Markdown to Confluence Wiki Markup
https://github.com/praveenpuglia/gulp-gfmtoconf
confluence confluence-markup converter gfm github markdown markup
Last synced: 10 days ago
JSON representation
Converts Github Flavoured Markdown to Confluence Wiki Markup
- Host: GitHub
- URL: https://github.com/praveenpuglia/gulp-gfmtoconf
- Owner: praveenpuglia
- License: mit
- Created: 2017-04-14T09:20:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T09:38:59.000Z (over 7 years ago)
- Last Synced: 2024-05-02T01:07:19.331Z (8 months ago)
- Topics: confluence, confluence-markup, converter, gfm, github, markdown, markup
- Language: JavaScript
- Homepage: https://npmjs.com/package/gulp-gfmtoconf
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# gulp-gfmtoconf
> Github flavoured markdown to Confluence Wiki markup.## Install
```sh
npm install --save gulp-gfmtoconf
```## Usage
```js
let gulp = require("gulp");
let converter = require("gulp-gfmtoconf");gulp.task("plugin", ()=> {
gulp.src("./**/*.md")
.pipe(converter())
.pipe(gulp.dest("converted/"));
})
```
## License
MIT @ [Praveen Puglia](http://praveenpuglia.com)## Thanks
- [chunpu](https://github.com/chunpu/) - https://github.com/chunpu/markdown2confluence