catdown-title
v1.0.0
Published
Catdown plugin. Extracts the first `h1` element and emits a "title" event with its value on every change.
Downloads
2
Readme
catdown-title
Catdown plugin. Extracts the first h1
element on render, and emits a "title" event with its value on every change.
Usage
Install with npm
.
$ npm install --save catdown-title
use
it on your Catdown editor.
editor.use(require("catdown-title"));
Bind up.
editor.on("title", function(title){
document.title = title;
});