URL과 제목을 org-mode, markdown 링크로 가져오기
개요
메모를 할 때는 기본 org-mode,
기사를 쓸 때는 기본 markdown으로 쓰고 있으므로,
브라우징 중인 URL 타이틀을 그 하이퍼링크 형식으로 취할 수 있으면 편리.
북마크릿으로 간단하게 할 수 있었기 때문에,
열람 중인 페이지의 URL과 타이틀을 각각의 형식으로 클립보드에 카피하는 것을 작성했다.
참고:
- Create Bookmarklet (browser bookmark that executes Javascript) 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하면 편리하다.
h tps : // cぉ 하코 m ぇ r. 아 ps포 t. 코 m / 칭찬
Reference
이 문제에 관하여(URL과 제목을 org-mode, markdown 링크로 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/syogi_wap/items/5638bcf5c173d76dc872
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
북마크릿으로 만들었습니다.
이하의 요령으로 북마크릿으로서 등록하고 있다.
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하면 편리하다.
h tps : // cぉ 하코 m ぇ r. 아 ps포 t. 코 m / 칭찬
Reference
이 문제에 관하여(URL과 제목을 org-mode, markdown 링크로 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/syogi_wap/items/5638bcf5c173d76dc872
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(URL과 제목을 org-mode, markdown 링크로 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/syogi_wap/items/5638bcf5c173d76dc872텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)