如果您点击了这篇文章,您可能知道这两种技术是什么,但如果您不知道,这里有一个快速解释:
Obsidian 是一个功能丰富的 Markdown 编辑器。但它不仅仅是一个 Markdown 编辑器。这是管理知识的一种方式。它非常适合以灵活、非线性的方式组织您的想法。
黑曜石适用于所有平台。所以你基本上可以在任何平台上写文章。
几个月来我一直在其中记下所有笔记,这太棒了!
Hugo 是一个用 golang 制作的超快速静态网站生成器。我的博客使用 Hugo 已经快两年了。我最近更换了博客的主题。了解更多关于新面貌、新开始的变化。
在本文中,我不会展示如何设置这两种技术,而只是展示如何让它们协同工作。
如果您想了解我如何使用hugo、cloudflare 和 render.com 设置整个博客,请阅读:我如何免费设置此博客(域名、托管、ssl)完整指南
如果您想要有关如何使用黑曜石的良好指南,请阅读:入门 - obsidian.md
我的设置目标是:
我当前的工作流程是:
如果你想跳过旅程部分可以直接去The Sauce
我将经历一些在设置时犯的错误。
我的第一个想法是创建一个简单的符号链接(顺便说一句,我使用 linux),将两个文件夹链接在一起。
基本上我有两个文件夹:
blog/ vault/
博客文件夹包含所有博客文件夹,保管库是我的个人保管库。
符号链接将链接这些文件夹
blog/content vault/Blog
但是符号链接的问题是文件夹内容在我的 git 存储库中不可见。这意味着人们不能对我的任何文章提出修改
我想要同步我的文件夹。我尝试编写几个 bash 脚本,使用 cronjob 自动同步两个文件夹。然而,当我不写作时,不断运行后台是一种资源浪费。仅仅通过 cli 运行脚本并不那么顺利。
基本上我设置的方式是我有两个文件夹:
blog vault
blog 文件夹包含所有必需的 Hugo 文件,还有一个名为 content 的子目录,其中包含所有 Markdown 博客文件。
我在我的保管库中创建了一个名为 Blog
的新文件夹
blog/content vault/Blog
之后,我将所有文件从内容目录复制到博客。
然后我开始写这篇文章
我需要某种方法来设置一个简单的模板来包含所有必需的 Hugo 前言。
这很简单。
了解如何设置模板 模板 - obsidian.md
我在模板文件夹中创建了一个名为 Blog Post 的文件
我的博客文章模板包含以下内容:
--- title: "{{Title}}" description: date: "{{date:YYYY-MM-DD}}T{{time:HH:mm:ss}}+00:00" draft: true --- **If you enjoyed this article consider [supporting me](https://4rkal.eu.org/donate)**
我有所有必需的前言,包括标题、描述和日期,格式符合 Hugo 要求的格式。
我还添加了一条简短的捐赠文字,将其添加在每篇文章的底部。
这意味着我可以自动将此模板插入到任何文件中并开始编写!
现在我希望将我的保管库/博客目录中的所有文件复制到博客/内容
感谢一位热心的不和谐用户,我找到了 obsidian-shellcommands 插件。
注意:这个插件目前不能很好地与黑曜石的 flatpak 版本配合使用(因为 flatpak 隔离了环境)。使用另一种替代方案(.deb 或 appimage)似乎可行。
它允许您使用热键在后台运行 shell 命令。
设置步骤如下:
On Linux/MacOS that is:
cp -a ~/folder1/. ~/folder2/
in my case that is cp -a ~/Documents/vault/Blog/. ~/Documents/blog2/content/
On windows it most probably is:
robocopy "%USERPROFILE%\folder1" "%USERPROFILE%\folder2" /E /COPYALL
After that we need to set a hotkey that will run the command
Click on the (+) icon to go to the hotkey settings and assign a hotkey
My hotkey is CTR + 0, simply because that was available.
Now every time that I run the hotkey it copies over all of my files to the hugo folder ready to be published
I also want to be able to automatically publish my articles. But I want it to happening by hitting a hotkey.
I wrote a small script that does exactly that:
#!/bin/bash cd ~/Documents/blog hugo git add . git commit -m "new" git push -u origin main
This script will build my website, commit and push to my github repo, where it is picked up and published. Read How I setup this blog for free (domain, hosting, ssl) Complete Guide to learn how to setup your own blog for free.
Don’t forget to make the script executable by running
chmod +x ./YOURSCRIPT.sh
Then create a new shell command for the shellcommand plugin (as we did before) and enter the path to your script.
In my case that is:
~/Documents/blog2/push.sh
Then enter a hotkey and you’re done!
I can now simply open my obsidian vault, create a new file, insert my template and have all the info automatically entered.
I then write my article inside of obsidian
Run my hotkey and copy all the files into the hugo directory
Hit another key and my blog is published!
If you enjoyed this article consider supporting me
以上是我的 Obsidian + Hugo 博客设置(使用热键自动发布)的详细内容。更多信息请关注PHP中文网其他相关文章!