URLとタイトルをorg-mode、markdownのリンクとして取得
概要
メモをとるときは基本org-mode、
記事を書くときは基本markdownで書いているので、
閲覧中のURLタイトルをそれらのハイパーリンク形式で取れたら便利。
ということをブックマークレットで簡単にできそうだったので、
閲覧中のページのURLとタイトルをそれぞれの形式でクリップボードにコピーするものを作成した。
参考:
- Create Bookmarklet (browser bookmark that executes Javsacript) to copy a given text to Clipboard
コード
ブックマークレットとして作成した。
以下の要領でブックマークレットとして登録している。
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
Author And Source
この問題について(URLとタイトルをorg-mode、markdownのリンクとして取得), 我々は、より多くの情報をここで見つけました https://qiita.com/syogi_wap/items/5638bcf5c173d76dc872著者帰属:元の著者の情報は、元の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 .