abstract
Obsidian is a Markdown-powered note taking tool.
callouts
To create a callout, add [!info] to the first line of a blockquote, like so:
> [!info] Here's a callout block.
> It supports **Markdown**, [[Wikilinks]], and [[Embedded files|embeds]].
> ![[Somefile.jpg]]
callout types
There are the callout types and their aliases:
abstract(summary,tldr)infotodotip(hint,important)success(check,done)question(help,faq)warning(caution,attention)failure(fail,missing)danger(error)bugexamplequote(cite)
folding
Fallouts are made foldable by adding a + (expanded by default) or - (collapsed by default) after the type identifier:
> [!faq]- Foldable callout
> More info here.
nesting
Callouts can be nested:
> [!info] This callout has another nested in it.
> > [!faq] And here it is.
titles
The title of the callout is its type identifier by default. Change this by adding text after the type identifier:
> [!tip] Custom title
> Custom text.
diagrams
embedding web pages
To embed a web page:<iframe src="https://www.example.com/"></iframe>
To embed a YouTube video or a Tweet, use the Markdown syntax for external images:
formatting
~~Strikethrough~~==Highlight==%% Comments- Horizontal rule
---
footnotes
This is a footnote[^1].
This is another footnote[^fn].
[^1]: This is the referenced text.
[^fn]: This referenced text spans multiple lines
due to the two spaces at the beginning of this one.
images
- Link to images:
 - Link to and resize an image:

linking
Obsidian supports WikiLink and Markdown links. The WikiLink format is shown below.
- Link to a note:
[[Note name]] - Link to a note with custom display text:
[[Note name|custom text here]] - Link to a note’s heading:
[[Note name#Abstract]] - Link to a note in another vault:
[Note](obsidian://open?valut=ValutName&file=Note.md)
link to a block in a note
In the note, add a block identifier:
This is some note. ^some-identifier
To link to the block:
[[Note name#^some-identifier]]
embedding
To embed a note in another note, add an exclamation mark in front of an internal link:
![[Some note]]
embedding files
The following files can be embedded:
- Markdown (md)
- Image (avif, bmp, gif, jpg, jpeg, png, svg, webp)
- Audio (flac, m4a, mp3, ogg, wav, webm, 3gp)
- Video (mkv, mov, mp4, ogv, webm)
- PDF (pdf)
Files are embedded just like notes:
![[filename.ext]]
math expressions
Obsidian supports math expressions via MathJax and LaTeX.
Create a multi-line math expression:
$$
\begin{vmatrix}a & b\\
c & d
\end{vmatrix}=ad-bc
$$
Create an inline math expression: $e^{2i\pi} = 1$
tags
Tags can be used as keywords or topics for notes.
- Tag names can include alphanumeric characters, underscore, and hyphen.
- They must contain at least one non-numeric character.
- Tags are case-insensitive.
creating tags
Tags are created like so: #meeting
Tags can also be created with the tags property in frontmatter:
---
tags:
- meeting
- boring
---
Tags can be searched using the tag: search operator.
nested tags
Tags can be nested like so: #inbox/to-process
tasks
A line can be marked as a task with Ctrl + L.
Tasks can be searched via task-todo:<search term> for open tasks and task-done:<search term> for closed tasks.
task plugin
Documentation: Introduction - Tasks User Guide - Obsidian Publish