-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add default classes for each HTML element
Estevão Soares dos Santos edited this page Oct 6, 2018
·
4 revisions
A lot of people use css ui kits like bootstrap, semantic-ui and require default class names for html elements.
<h1 class="ui large header">1st Heading</h1>
<h2 class="ui medium header">2nd Heading</h2>
<ul class="ui list">
<li class="ui item">first item</li>
<li class="ui item">second item</li>
</ul>
Showdown does not support this out of the box. But you can create an extension to accomplish this:
const showdown = require('showdown');
const classMap = {
h1: 'ui large header',
h2: 'ui medium header',
ul: 'ui list',
li: 'ui item'
}
const bindings = Object.keys(classMap)
.map(key => ({
type: 'output',
regex: new RegExp(`<${key}(.*)>`, 'g'),
replace: `<${key} class="${classMap[key]}" $1>`
}));
const conv = new showdown.Converter({
extensions: [...bindings]
});
const text = `
# 1st Heading
## 2nd Heading
- first item
- second item
`;
This would output something like this:
<h1 class="ui large header">1st Heading</h1>
<h2 class="ui medium header">2nd Heading</h2>
<ul class="ui list">
<li class="ui item">first item</li>
<li class="ui item">second item</li>
</ul>
Credits for this extension go to @zusamann (original issue can be consulted here).
Updated by @Kameelridder (original issue can be consulted here)