使用Bookmarklet书签快速生成markdown参考链接
2021/12/19 23:23:06
本文主要是介绍使用Bookmarklet书签快速生成markdown参考链接,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
痛点
写文章著名参考链接时手动生成markdown链接很麻烦
例如Google
很长一段时间我都使用chrome扩展进行获取
Copy Title and Url as Markdown Style
对于macOS的Safari无能为力
解决
思路:使用包含javascript代码的Bookmarklet书签获取title+url拼接为markdown格式
只需添加书签并将js代码填入地址即可,由于使用js理论上支持所有平台浏览器调用
弹窗版
弹出窗口手动复制markdown链接
javascript:window.prompt("Copy to clipboard: Ctrl+C, Enter",'[' + document.title + '](' + window.location.href + ')');
复制版
直接将markdown链接写入剪贴板
javascript:(function() { function copyToClipboard(text) { if (window.clipboardData && window.clipboardData.setData) { /*IE specific code path to prevent textarea being shown while dialog is visible.*/ return clipboardData.setData("Text", text); } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { var textarea = document.createElement("textarea"); textarea.textContent = text; textarea.style.position = "fixed"; /* Prevent scrolling to bottom of page in MS Edge.*/ document.body.appendChild(textarea); textarea.select(); try { return document.execCommand("copy"); /* Security exception may be thrown by some browsers.*/ } catch (ex) { console.warn("Copy to clipboard failed.", ex); return false; } finally { document.body.removeChild(textarea); } } } var markdown = '[' + document.title + '](' + window.location.href + ')'; copyToClipboard(markdown); })();
参考
[Bookmarklet to copy current page title and url in Markdown format to clipboard, like title - Usual for posting links to resources in README.md files](https://gist.github.com/bradleybossard/3667ad5259045f839adc)
这篇关于使用Bookmarklet书签快速生成markdown参考链接的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15JavaMailSender是什么,怎么使用?-icode9专业技术文章分享
- 2024-11-15JWT 用户校验学习:从入门到实践
- 2024-11-15Nest学习:新手入门全面指南
- 2024-11-15RestfulAPI学习:新手入门指南
- 2024-11-15Server Component学习:入门教程与实践指南
- 2024-11-15动态路由入门:新手必读指南
- 2024-11-15JWT 用户校验入门:轻松掌握JWT认证基础
- 2024-11-15Nest后端开发入门指南
- 2024-11-15Nest后端开发入门教程
- 2024-11-15RestfulAPI入门:新手快速上手指南