将来自网络的照片和视频添加到 Markdown 文件时,是否有任何简单的解决方案来实现永久性?

Are there any simple solutions to achieve permanence when adding photos and videos from the web to Markdown files?

我喜欢使用 markdown 来保存来自网络的图像和视频,但讨厌如果网址更改或关闭它们可能会丢失的想法。

但是,将照片和视频保存到我的硬盘驱动器会减慢记笔记的速度并造成便携性问题,尤其是当 markdown 文件在云端时(因为需要文件路径)。

有一些方法可以直接嵌入照片,但这看起来很乱,而且不适用于视频。

你要明白,视频和图片都有一个文件大小,对于视频来说,它可以很快超过 200Mb。

如果您的读者必须等待 1 分钟才能获得阅读您的 .md 的特权,他们将不会高兴

对于图像,你所说的“乱”是base64 representation of the image ? It is not that bad but won't necessarily work as you can see on this repo

我认为它适用于维基百科和 github 页。

获取剪贴板中图像的 base64 表示的脚本下方:

cat  | base64 | xargs echo -n | xclip -selection clipboard

至于视频,您可以从 youtube 视频中放置点击诱饵图像,然后像 this example

中那样打开 link
<a href="https://www.youtube.com/watch?v=QchosaSvyY4
" target="_blank"><img src="http://img.youtube.com/vi/QchosaSvyY4/0.jpg"
alt="Chrono Trigger Best Ending on youtube" width="240" height="180" border="10" /></a>

因此,如果您有 space 个问题,您可以上传到 youtube,然后使用上述技巧。