1.0.0 • Published 9 years ago

catdown-title v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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;
});