Skip to content

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Bold text and also bold

Italic text and also italic

Bold and italic and also bold and italic

Strikethrough

Highlight

Blockquote line one Blockquote line two

Nested blockquote


  • Unordered item
  • Unordered item
    • Nested item
    • Nested item
      • Deep nested item
  1. Ordered item
  2. Ordered item
    1. Nested ordered
    2. Nested ordered
  3. Ordered item

  • Unchecked task
  • Checked task
  • Another task
    • Nested done
    • Nested pending

inline code

main.ts
const greet = name => {
return `Hello, ${name}!`;
};
console.log(greet("Obsidian"));
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
Terminal window
echo "Hello, World!"
ls -la ~/Documents

External link

Link with title

./index/ (Internal link)

Custom Display Text


Alt text

embedded-note (not supported)


NameRoleStatus
AliceDesignerActive
BobDeveloperIdle
CarolPMActive
Left alignedCenteredRight aligned
AppleBananaCherry
OneTwoThree

Footnote reference1 and another one2.


Here is a sentence with a highlighted phrase inside it.

Here is text with an ^[inline footnote] embedded directly.


#tag #nested/tag #another-tag #tag_123


This is a note callout.
Note

This is a note callout.

This is a tip callout.
Tip

This is a tip callout.

This is a warning callout.
Warning

This is a warning callout.

This is a danger callout.
Danger

This is a danger callout.

This is an info callout.
Info

This is an info callout.

This is a success callout.
Success

This is a success callout.

This is a question callout.
Question

This is a question callout.

This is an example callout.
Example

This is an example callout.

This is a quote callout.
Quote

This is a quote callout.

Collapsible closed by default This content is hidden until expanded.

Content

Note

Collapsible closed by default This content is hidden until expanded.

Collapsible open by default This content is visible but collapsible.

Content

Tip

Collapsible open by default This content is visible but collapsible.


Use [[note]] to link.
Two trailing spaces
force a line break.

First paragraph.

Second paragraph after a blank line.


Abbreviations are not supported.

_[HTML]: Hyper Text Markup Language.
_[W3C]: World Wide Web Consortium.


This is a marked word and this is a subscript and this is a ^superscript^.


The following is a comment shouldn’t render in preview mode.


Mermaid diagrams are supported.

graph TD
    A[Start] --> B{Decision}
    B -->|Yes| C[Do this]
    B -->|No| D[Do that]
graph TD
    A["Node A"]:::tooltip
    click A callback "This is a tooltip"

Lift(LL) can be determined by Lift Coefficient (CLC_L) like the following
equation.

L=12ρv2SCLL = \frac{1}{2} \rho v^2 S C_L
  • Line one
  • Line two
    • Sub-line A
    • Sub-line B
  • Line three
  1. Step one
  2. Step two
  3. Step three

First blockquote block.

Second blockquote block.

Multiline blockquote continues here and ends here.


Footnotes

  1. This is the first footnote.

  2. This is a named footnote.