catdown-title
v1.0.0
Published
Catdown plugin. Extracts the first `h1` element and emits a "title" event with its value on every change.
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-titleuse it on your Catdown editor.
editor.use(require("catdown-title"));Bind up.
editor.on("title", function(title){
document.title = title;
});