Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/varharrie/md2ubb
- Owner: varHarrie
- License: mit
- Created: 2016-12-08T12:58:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T02:37:45.000Z (over 7 years ago)
- Last Synced: 2024-10-12T23:39:25.352Z (about 1 month 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)
```