Renderer for marked to convert markdown to bbcode
npm install md2bbcMarkdown is cool. But forums only support bbcode.
Is there a way to use markdown in forum?
With this question, this tool is developed.
Plugin for marked that convert markdown to bbcode.
npm install --save md2bbc marked if you are using node.js or browserify, or;bower install --save md2bbc marked if you want to use this in browser.
This support node.js require, browserify, AMD(though I don't know how to use it) and
javascript
let marked = require('marked');
let md2bbc = require('md2bbc');console.log(marked('Markdown is awesome.', {
renderer: new md2bbc()
}));
// Or, set default renderer to md2bbc
marked.setOptions({
renderer: new md2bbc()
});
console.log(marked('Markdown is awesome.'));
// Both will log [div][b]Markdown[/b] is awesome.[/div]
`Browser:
`html
Marked in the browser
`Options
Type: ObjectReminder: Do not set option in md2bbc constructor. Instead, set them in marked option.
I.E.
`javascript
let marked = require('marked');
let md2bbc = require('md2bbc');marked.setOptions({
renderer: new md2bbc(),
paragraphTag: 'div',
tableAttr: 'width=98% broder=1'
})
`Warning: Options does not perform type check. Make sure you have passed in correct type.
Options contains the following keys:
$3
Type: StringDefault:
divThe tag name for paragraph tag.
If
'' is passed in, no tag will be inserted for paragraph$3
Type StringDefault:
''Attribute for table. For example, width and broder of the table, if your implementation of BBcode is supported.
If
'' is passed in, no attribute will be added.Do not add space before it.
$3
Type: BooleanDefault:
trueEnable align for table(or table cell, if you like)
Overriding
You may override any function you want by doing the followings:
`javascript
let marked = require('marked');
let md2bbc = require('md2bbc');// Create a new instance of md2bbc renderer
let renderer = new md2bbc();
// Override html rendering
renderer.html = html => {
return ''
};
marked.setOptions({
renderer: renderer
});
`
(Methods can be found from here)Reminder
Not all bbcode implementation got all features. For example, some does not have code tag. Please either ask forum master to implement that as this is somewhat a bug form their side. I write this base on the implementation of gamer.com.tw(Chinese site).Running tests on node.js
1. Clone this repository
2. Run npm install
3. Run npm testBuild it
Building this will minify the javascript and create a sourcemap for it.1. Install gulp globally by
npm install -g gulp
2. Run npm install
3. Run gulp`