4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

開いているWebページへのリンクをMarkdown形式でコピーするブックマークレット

Last updated at Posted at 2017-12-29

やりたいこと

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

上記ソースコードをブックマークレット登録する。
Chromeの場合(改行そのままで URL 欄にコピペ可):

copy_mdlink_bookmarklet.PNG

ブックマークレット実行後のコピー形式例

[開いている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);
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?