開いているWebページへのリンクをMarkdown形式でコピーするブックマークレット
やりたいこと
Webブラウザで開いているWebページへの、Markdown形式のリンクをワンタッチでコピーしたい。
環境
- Google Chrome
Bookmarklet
javascript:
(function(){
var text = document.createElement('div');
text.appendChild(document.createElement('pre')).textContent = '[' + document.title + ']( ' + location.href + ' )';
document.body.appendChild(text);
document.getSelection().selectAllChildren(text);
document.execCommand('copy');
document.body.removeChild(text);
})()
javascript:
(function(){
var text = document.createElement('div');
text.appendChild(document.createElement('pre')).textContent = '[' + document.title + ']( ' + location.href + ' )';
document.body.appendChild(text);
document.getSelection().selectAllChildren(text);
document.execCommand('copy');
document.body.removeChild(text);
})()
上記ソースコードをブックマークレット登録する。
Chromeの場合(改行そのままで URL
欄にコピペ可):
ブックマークレット実行後のコピー形式例
[開いているWebページへのリンクをMarkdown形式でコピーするブックマークレット - Qiita]( https://qiita.com/vmmhypervisor/items/099582feb9f9615c5b8b )
おまけ: reStructuredText形式でコピーするブックマークレット
javascript:
var text = document.createElement('div');
text.appendChild(document.createElement('pre')).textContent = '`' + document.title + ' <' + location.href + '>`__';
document.body.appendChild(text);
document.getSelection().selectAllChildren(text);
document.execCommand('copy');
document.body.removeChild(text);
[開いているWebページへのリンクをMarkdown形式でコピーするブックマークレット - Qiita]( https://qiita.com/vmmhypervisor/items/099582feb9f9615c5b8b )
javascript:
var text = document.createElement('div');
text.appendChild(document.createElement('pre')).textContent = '`' + document.title + ' <' + location.href + '>`__';
document.body.appendChild(text);
document.getSelection().selectAllChildren(text);
document.execCommand('copy');
document.body.removeChild(text);
Author And Source
この問題について(開いているWebページへのリンクをMarkdown形式でコピーするブックマークレット), 我々は、より多くの情報をここで見つけました https://qiita.com/vmmhypervisor/items/099582feb9f9615c5b8b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .