Obsidian.md
1 参考资料
2 文本
- 彩色文本
<font color="red"> This text is red </font>
3 引用
3.1 测试用内容
- 测试用内容
3.2 引用(标题引用,块引用)
- 有两种对内容的引用方式,一种是通过标题,引用相应小节内的内容,另一种是引用一部分正文内容
- 通过
#
引用标题 - 通过
^
先标记再引用其它内容(link to block)
- 通过
|
后可将链接改为别名
3.2.1 显示引用内容
![[引用内容]]
如![[z.other/Software tools/Obsidian#测试用内容|测试用内容]]
的效果为:
Transclude of block 测试用内容
3.2.2 不显示引用内容
[[引用内容]]
如[[z.other/Software tools/Obsidian#测试用内容|测试用内容]]
的效果为:
测试用内容
3.2.3 块引用
- 为引用块命名时注意其只支持字母数字和波折号
3.2.3.1.1 直接进行块引用
- 使用方法:在需要引用的内容后加
^your-block-name
,注意在^
应有空格 - 测试内容 ^your-block-name
- 引用测试内容
[[4.software/text_tools_paper-writing/obsidian#your-block-name|引用测试内容]]
3.2.3.2 块引用列表
- 引用块的前后应有空行,块引用
^block
后也应有空行
3.2.3.2.1 测试用列表
-
list 1
- list 1-1
- list 1-1-1
- list 1-1-2
^list-test1
- list 1-1
-
代码
- list 1 - list 1-1 - list 1-1-1 - list 1-1-2 ^list-test1
注意中间的空行 不支持sub-list通过blockid进行引用
We don’t support sub-list blockid linking
-
测试效果
Transclude of block list-test1
3.2.3.3 块引用公式
- 测试用内容:
$$
E = mc^2
$$
^einstein-relation
^einstein-relation
- 可借助块引用
[[z.other/Software tools/Obsidian#einstein-relation|Einstein relation]]
,效果为Einstein relation 或显示引用内容Transclude of block einstein-relation
4 格式
4.1 图片调整大小
-
有没有""不对单独使用造成影响,在表格中需要有""
- 方法一:

- 方法二
![[reduction1.png\|600]]
Resize images You can resize images using the following syntax:
For markdown images, use
For embeds, use![[image.png|100x100]]
To have the image scale according to its aspect ratio, omit the height![[image.png|100]]
5 HTML
5.1 空格与换行
- 没有内容的换行将打断html标签的解析
5.2 <img>
引用图片
No, not directly. There are a couple workarounds: You can use an
html tag if the image is hosted publicly (not a local file).
- Tested, works:
- Windows:
<img src="app://local/C://Users/username/Documents/obsidian_notebook/test.jpg">
- Linux (you have to have two “/” before “home”):
<img src="app://local//home/username/Documents/obsidian_notebook/test.jpg">
- Mac (it doesn’t matter if you have one or two “/” before “Users”):
<img src="app://local/Users/cusername/Documents/obsidian_notebook/test.jpg">
- Windows:
5.3 header numbering
6 Latex
6.1 竖线
- 在表格中对
|
的解释有问题Workaroud: if you need
|
user\vert
数学公式
- 在使用
$$
创建非嵌入的公式时,公式开头和结尾的$$
应各占一行,否则有的导出HTML插件可能会出现问题,如$$ y=ax+b $$
7 插件
- Advanced Tables for Obsidian
- Find unlinked files
- Clear unused images
- Ozan’s Image in Editor Plugin
- MarkSearch,把chrome网页保存为本地md
- Obsidian Latex Theorem Equation Referencer
- Obsidian Webpage Export
- Obisian Image Toolkit
7.1 Quartz,将整个笔记发布为网站
- 使用Quartz
- 安装后删除
content
文件夹,建立软链接mklink /d (link) (target)
- 配置文件quartz/quartz.config.ts
- 忽略特定一类文件夹及其下所有文件(如文件夹名以
private.
开头)ignorePatterns: ["private", "templates", ".obsidian", ".git", "private.*/**/*"],
- 忽略特定一类文件夹及其下所有文件(如文件夹名以
- 预编译和测试(通过
http://localhost:8080
访问)npx quartz build --serve
- 配置github workflow,新建
.github/workflows/static.yml
# Simple workflow for deploying static content to GitHub Pages name: Deploy static content to Pages on: # Runs on pushes targeting the default branch push: branches: ["master"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" cancel-in-progress: false jobs: # Single deploy job since we're just deploying deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: # Upload entire repository path: '.' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2
- 安装后删除
7.2 为标题添加序号
- 使用插件Number Heading Plugin for Obsidian
- 在设置中配置为跳过第一级标题
- 设置跳过标签,如
^skip-numbering
,可以放在标题后(有空格)从而不给该标题添加序号 - 使用Ctrl+P呼出命令行,搜索命令
Number headings
- 更改序号先删除所有序号
8 开发插件
- TypeScript教程
- 深入理解 TypeScript
- [Plugins mini FAQ](https://forum.obsidian.md/t/plugins-mini-faq/7737
- TS playground
I want to develop a plugin, where do I start?
- Prerequisites: Javascript, Typescript, npm, git knowledge as far as I can tell
- Where is the API? https://github.com/obsidianmd/obsidian-api
- How should a plugin look like? https://github.com/obsidianmd/obsidian-sample-plugin
- The README provides additional instructions on how to use, how to create releases, and how to register the plugin in the community plugin page.
- You can use the sample plugin as a template for your own plugin
8.1 准备工作
- 插件在
.obsidian/plugins/
中,每个文件夹对应一个插件,插件包含data.json
,main.js
和manifest.json
- 开发者模式 ctrl+shift+I
- 建议改动css的地方都放在vault —> .obsidian —> snippets里 做成css片段,然后在软件里启用片段