https://github.com/varharrie/md2ubb
:pencil: Simple script for conversion from markdown to ubb.
https://github.com/varharrie/md2ubb
Last synced: 4 months ago
JSON representation
:pencil: Simple script for conversion from markdown to ubb.
- Host: GitHub
- URL: https://github.com/varharrie/md2ubb
- Owner: varHarrie
- License: mit
- Created: 2016-12-08T12:58:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T02:37:45.000Z (about 8 years ago)
- Last Synced: 2025-02-21T07:37:15.231Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```