Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/varharrie/md2ubb

:pencil: Simple script for conversion from markdown to ubb.
https://github.com/varharrie/md2ubb

Last synced: about 5 hours ago
JSON representation

:pencil: Simple script for conversion from markdown to ubb.

Awesome Lists containing this project

README

        

# md2ubb

Simple script for conversion from markdown to ubb.

## Usage

```bash
# install as global module
npm install -g md2ubb
# ouput to output.txt
md2ubb test.md output.txt
# output to console
md2ubb test.md

# install as dependencies
npm install --save md2ubb
```

```javascript
var convert = require('md2ubb')
var ubb = convert('### Title')
console.log(ubb)
```