obsidian-digital-garden
todo
the journey
Digital Garden - Publish Obsidian Notes For Free
- 把
titleproperty设置为我需要的标题 - 打开inline title
custom css
为什么默认首页title是notes?
修改路径导致文章重复
这时需要重新发布所有文章,而不是publish active note,才能删除错误的重复文章。
特别顽固的白色背景
最后以这样的方式修好了:
.theme-light {
--background-primary: #f8f7f6;
--background-secondary: #f3f2f1;
--text-normal: #333;
background: var(--background-primary);
color: var(--text-normal);
}
260223-markdown-test is weirdly broken from time to time
analytics
根据这个issue操作,只需要:
- 打开vercel analytics(因为我把网站host在vercel上,它这个免费套餐可以看30天的数据)
- 在我的网站repo里新建
src/site/_includes/components/user/common/footer/analytics.njk(github可以直接新建文件,键入/会创建新目录) - 在里面粘贴:
<script defer src="/_vercel/insights/script.js"></script> <script defer src="/_vercel/speed-insights/script.js"></script>
这样就完成了。
dataview列表的标题里不能包含|
否则好像|后面的内容都会被切除。