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 davepoon/buildwithclaude obsidian-markdown<br># Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough~~
==Highlighted text==[[Note Name]]
[[Note Name|Display Text]]
[[Folder/Note Name]][[Note Name#Heading]]
[[Note Name#Heading|Display Text]]
[[#Heading in Current Note]][[Note Name#^block-id]]
[[Note Name#^block-id|Display Text]]
[[#^block-id]]This is a paragraph you can reference. ^my-block-id
- List item with ID ^list-block![[Note Name]]
![[Note Name#Heading]]
![[Note Name#^block-id]]![[image.png]]
![[image.png|400]]
![[image.png|400x300]]![[audio.mp3]]![[document.pdf]]
![[document.pdf#page=5]]
![[document.pdf#height=400]]![[video.mp4]]> [!note]
> This is a note callout.
> [!warning]
> This is a warning callout.
> [!tip] Custom Title
> This callout has a custom title.| Type | Aliases | Description |
|---|---|---|
| Default blue info box | |
| | Abstract/summary |
| Information | |
| Task/todo item | |
| | Helpful tip |
| | Success message |
| | Question/FAQ |
| | Warning message |
| | Failure message |
| | Error/danger |
| Bug report | |
| Example content | |
| | Quotation |
> [!note]+ Expanded by default
> Content visible initially.
> [!note]- Collapsed by default
> Content hidden initially.> [!question] Can callouts be nested?
> > [!answer] Yes!
> > Callouts can be nested inside each other.- Item 1
- Item 2
- Nested item
- Another nested item
- Item 31. First item
2. Second item
1. Nested numbered item
3. Third item- [ ] Uncompleted task
- [x] Completed task
- [ ] Another taskUse `inline code` for short snippets.```javascript
function hello() {
console.log("Hello, world!");
}
```javascripttypescriptpythonrustgojavaccppcsharprubyphphtmlcssjsonyamlmarkdownbashsql| Header 1 | Header 2 | Header 3 |
|----------|:--------:|---------:|
| Left | Center | Right |
| aligned | aligned | aligned |The equation $E = mc^2$ is famous.$$
\frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
$$```mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Do Something]
B -->|No| D[Do Something Else]
C --> E[End]
D --> E
```This is a sentence with a footnote.[^1]
[^1]: This is the footnote content.%%
This is a comment that won't be rendered.
%%
Inline %%comment%% within text.---
title: My Note Title
date: 2024-01-15
tags:
- tag1
- tag2
author: John Doe
---| Type | Example |
|---|---|
| Text | |
| Number | |
| Checkbox | |
| Date | |
| Date & time | |
| List | |
| Link | |
---
tags:
- project
- work
- important
aliases:
- My Alias
- Another Name
cssclasses:
- wide-page
- cards
---This note is about #productivity and #tools.#project/work
#status/in-progress
#priority/high---
tags:
- project
- project/work
- status/active
---<div class="my-class">
Custom HTML content
</div>
<details>
<summary>Click to expand</summary>
Hidden content here
</details>
<kbd>Ctrl</kbd> + <kbd>C</kbd>---
title: Project Alpha Overview
date: 2024-01-15
tags:
- project
- documentation
status: active
---
# Project Alpha Overview
## Summary
This document outlines the key aspects of **Project Alpha**. For related materials, see [[Project Alpha/Resources]] and [[Team Members]].
> [!info] Quick Facts
> - Start Date: January 2024
> - Team Size: 5 members
> - Status: Active
## Key Features
1. [[Feature A]] - Core functionality
2. [[Feature B]] - User interface
3. [[Feature C]] - API integration
### Feature A Details
The main equation governing our approach is $f(x) = ax^2 + bx + c$.
![[feature-a-diagram.png|500]]
> [!tip] Implementation Note
> See [[Technical Specs#^impl-note]] for implementation details.
## Tasks
- [x] Initial planning ^planning-task
- [ ] Development phase
- [ ] Testing phase
- [ ] Deployment
## Code Example
```python
def process_data(input):
return transform(input)graph LR
A[Input] --> B[Process]
B --> C[Output]
## References
- [Obsidian Formatting Syntax](https://help.obsidian.md/Editing+and+formatting/Basic+formatting+syntax)
- [Advanced Formatting](https://help.obsidian.md/Editing+and+formatting/Advanced+formatting+syntax)
- [Internal Links](https://help.obsidian.md/Linking+notes+and+files/Internal+links)
- [Embedding Files](https://help.obsidian.md/Linking+notes+and+files/Embed+files)
- [Callouts](https://help.obsidian.md/Editing+and+formatting/Callouts)
- [Properties](https://help.obsidian.md/Editing+and+formatting/Properties)