Loading...
Loading...
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
npx skill4agent add oldwinter/skills obsidian-markdownThis is a paragraph.
This is another paragraph (blank line between creates separate paragraphs).
For a line break within a paragraph, add two spaces at the end
or use Shift+Enter.# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6| Style | Syntax | Example | Output |
|---|---|---|---|
| Bold | | | Bold |
| Italic | | | Italic |
| Bold + Italic | | | Both |
| Strikethrough | | | |
| Highlight | | | ==Highlighted== |
| Inline code | | | |
\*This won't be italic\*
\#This won't be a heading
1\. This won't be a list item\*\_\#\`\|\~[[Note Name]]
[[Note Name.md]]
[[Note Name|Display Text]][[Note Name#Heading]]
[[Note Name#Heading|Custom Text]]
[[#Heading in same note]]
[[##Search all headings in vault]][[Note Name#^block-id]]
[[Note Name#^block-id|Custom Text]]^block-idThis is a paragraph that can be linked to. ^my-block-id> This is a quote
> With multiple lines
^quote-id[[##heading]] Search for headings containing "heading"
[[^^block]] Search for blocks containing "block"[Display Text](Note%20Name.md)
[Display Text](Note%20Name.md#Heading)
[Display Text](https://example.com)
[Note](obsidian://open?vault=VaultName&file=Note.md)%20![[Note Name]]
![[Note Name#Heading]]
![[Note Name#^block-id]]![[image.png]]
![[image.png|640x480]] Width x Height
![[image.png|300]] Width only (maintains aspect ratio)
![[audio.mp3]]
![[audio.ogg]]![[document.pdf]]
![[document.pdf#page=3]]
![[document.pdf#height=400]]![[Note#^list-id]]- Item 1
- Item 2
- Item 3
^list-id```query
tag:#project status:done
```> [!note]
> This is a note callout.
> [!info] Custom Title
> This callout has a custom title.
> [!tip] Title Only> [!faq]- Collapsed by default
> This content is hidden until expanded.
> [!faq]+ Expanded by default
> This content is visible but can be collapsed.> [!question] Outer callout
> > [!note] Inner callout
> > Nested content| Type | Aliases | Description |
|---|---|---|
| - | Blue, pencil icon |
| | Teal, clipboard icon |
| - | Blue, info icon |
| - | Blue, checkbox icon |
| | Cyan, flame icon |
| | Green, checkmark icon |
| | Yellow, question mark |
| | Orange, warning icon |
| | Red, X icon |
| | Red, zap icon |
| - | Red, bug icon |
| - | Purple, list icon |
| | Gray, quote icon |
.callout[data-callout="custom-type"] {
--callout-color: 255, 0, 0;
--callout-icon: lucide-alert-circle;
}- Item 1
- Item 2
- Nested item
- Another nested
- Item 3
* Also works with asterisks
+ Or plus signs1. First item
2. Second item
1. Nested numbered
2. Another nested
3. Third item
1) Alternative syntax
2) With parentheses- [ ] Incomplete task
- [x] Completed task
- [ ] Task with sub-tasks
- [ ] Subtask 1
- [x] Subtask 2> This is a blockquote.
> It can span multiple lines.
>
> And include multiple paragraphs.
>
> > Nested quotes work too.Use `backticks` for inline code.
Use double backticks for ``code with a ` backtick inside``.```
Plain code block
```
```javascript
// Syntax highlighted code block
function hello() {
console.log("Hello, world!");
}
```
```python
# Python example
def greet(name):
print(f"Hello, {name}!")
```````markdown
Here's how to create a code block:
```js
console.log("Hello")
```
````| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 || Left | Center | Right |
|:---------|:--------:|---------:|
| Left | Center | Right || Column 1 | Column 2 |
|----------|----------|
| [[Link\|Display]] | ![[Image\|100]] |This is inline math: $e^{i\pi} + 1 = 0$$$
\begin{vmatrix}
a & b \\
c & d
\end{vmatrix} = ad - bc
$$$x^2$ Superscript
$x_i$ Subscript
$\frac{a}{b}$ Fraction
$\sqrt{x}$ Square root
$\sum_{i=1}^{n}$ Summation
$\int_a^b$ Integral
$\alpha, \beta$ Greek letters```mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Do this]
B -->|No| D[Do that]
C --> E[End]
D --> E
``````mermaid
sequenceDiagram
Alice->>Bob: Hello Bob
Bob-->>Alice: Hi Alice
``````mermaid
graph TD
A[Biology]
B[Chemistry]
A --> B
class A,B internal-link;
```This sentence has a footnote[^1].
[^1]: This is the footnote content.
You can also use named footnotes[^note].
[^note]: Named footnotes still appear as numbers.
Inline footnotes are also supported.^[This is an inline footnote.]This is visible %%but this is hidden%% text.
%%
This entire block is hidden.
It won't appear in reading view.
%%---
***
___
- - -
* * *---
title: My Note Title
date: 2024-01-15
tags:
- project
- important
aliases:
- My Note
- Alternative Name
cssclasses:
- custom-class
status: in-progress
rating: 4.5
completed: false
due: 2024-02-01T14:30:00
---| Type | Example |
|---|---|
| Text | |
| Number | |
| Checkbox | |
| Date | |
| Date & Time | |
| List | |
| Links | |
tagsaliasescssclasses#tag
#nested/tag
#tag-with-dashes
#tag_with_underscores
In frontmatter:
---
tags:
- tag1
- nested/tag2
---_-/<div class="custom-container">
<span style="color: red;">Colored text</span>
</div>
<details>
<summary>Click to expand</summary>
Hidden content here.
</details>
<kbd>Ctrl</kbd> + <kbd>C</kbd>---
title: Project Alpha
date: 2024-01-15
tags:
- project
- active
status: in-progress
priority: high
---
# Project Alpha
## Overview
This project aims to [[improve workflow]] using modern techniques.
> [!important] Key Deadline
> The first milestone is due on ==January 30th==.
## Tasks
- [x] Initial planning
- [x] Resource allocation
- [ ] Development phase
- [ ] Backend implementation
- [ ] Frontend design
- [ ] Testing
- [ ] Deployment
## Technical Notes
The main algorithm uses the formula $O(n \log n)$ for sorting.
```python
def process_data(items):
return sorted(items, key=lambda x: x.priority)
```
## Architecture
```mermaid
graph LR
A[Input] --> B[Process]
B --> C[Output]
B --> D[Cache]
```
## Related Documents
- ![[Meeting Notes 2024-01-10#Decisions]]
- [[Budget Allocation|Budget]]
- [[Team Members]]
## References
For more details, see the official documentation[^1].
[^1]: https://example.com/docs
%%
Internal notes:
- Review with team on Friday
- Consider alternative approaches
%%