/*
* @title Hatena::Let title separator
* @description append line-break to title on Hatena::Let
* @include http://let.hatelabo.jp/*
* @contributor mafucode http://let.hatelabo.jp/mafucode/let/gYC-x8aVsIr6EA (Fork of)
* @author noromanba http://let.hatelabo.jp/noromanba/let/gYC-x8ad1rr0bw
* @license MIT License http://opensource.org/licenses/MIT
* @require
*/
// e.g. http://let.hatelabo.jp/mafucode/let/gYC-x8W-1o2ACA
(function () {
var title = document.querySelector('#bookmarklet-title .title .edit-navi');
if (!title) return;
title.parentNode.insertBefore(document.createElement('br'), title);
})();