3
2

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 3 years have passed since last update.

URLとタイトルをorg-mode、markdownのリンクとして取得

Last updated at Posted at 2020-08-19

概要

メモをとるときは基本org-mode、
記事を書くときは基本markdownで書いているので、
閲覧中のURLタイトルをそれらのハイパーリンク形式で取れたら便利。

ということをブックマークレットで簡単にできそうだったので、
閲覧中のページのURLとタイトルをそれぞれの形式でクリップボードにコピーするものを作成した。

参考:

コード

ブックマークレットとして作成した。
以下の要領でブックマークレットとして登録している。

copy as org

[[URL][title]] の形式でクリップボードにコピーする。

javascript:!function(a){var b=document.createElement("textarea"),c=document.getSelection();b.textContent=a,document.body.appendChild(b),c.removeAllRanges(),b.select(),document.execCommand("copy"),c.removeAllRanges(),document.body.removeChild(b)}("[["+location.href+"]["+document.title+"]]");

copy as md

markdownもよく使うので作成しておいた。
[title](URL) の形式でクリップボードにコピーする。

javascript:!function(a){var b=document.createElement("textarea"),c=document.getSelection();b.textContent=a,document.body.appendChild(b),c.removeAllRanges(),b.select(),document.execCommand("copy"),c.removeAllRanges(),document.body.removeChild(b)}("["+document.title+"]("+location.href+")");

ブックマークレットの開発TIPS

ブックマークレット開発時は、google closure compilerでuglifyすると便利らしい。
https://closure-compiler.appspot.com/home

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?