Markdown formatting

Basic formatting Syntax

Paragraphs

If you want to prevent spaces from collapsing or add multiple blank spaces, you can use the &nbsp; (non-breaking space) or <br> (line break) HTML tags.

Footnotes

You can add footnotes1 to your notes using the following syntax:

This is a simple footnote[^1].
 
[^1]: This is the referenced text.
[^2]: Add 2 spaces at the start of each new line.
  This lets you write footnotes that span multiple lines.
[^note]: Named footnotes still appear as numbers, but can make it easier to identify and link references.

You can also inline footnotes in a sentence. Note that the caret goes outside the brackets.

You can also use inline footnotes. ^[This is an inline footnote.]

You can also use inline footnotes. ^[This is an inline footnote.]

Note

Inline footnotes only work in reading view, not in Live Preview.

Comments

You can add comments by wrapping text with % by using it twice. Comments are only visible in Editing view.

Testing out a … (inline comment), which is hidden.

This is an  (inline) comment where the word inline is enclosed with % twice.
 
Below is a block comment, which is hidden in view mode.
 

Obsidian Flavored Markdown

Callouts

Supported callout types

  • > [!note]
  • > [!abstract]
    • Aliases: summarytldr
  • > [!info]
  • > [!todo]
  • > [!tip]
    • Aliases: hint, important
  • > [!success]
    • Aliases: check, done
  • > [!question]
    • Aliases: help, faq
  • > [!warning]
    • Aliases: caution, attention
  • > [!failure]
    • Aliases: fail, missing
  • > [!danger]
    • Aliases: error
  • > [!bug]
  • > [!example]
  • > [!quote]
    • Aliases: cite

Nested callouts

> [!question] Can callouts be nested?
> 
> > [!todo] Yes!, they can.
> > > [!example]  You can even use multiple layers of nesting.

Foldable callouts

 > [!note]- Foldable
 > This is a foldable callout

Plugins

Updating the Site

Key commands

  • Building the quartz
    • This will start a local web server to run our Quartz on our computer. We can view it at http://localhost:8080/
npx quartz build --serve
  • Sync the change to Github & Deploy
    • Run tis command every time we want to push updates to our repository.
npx quartz sync
  • Upgrading Quartz
    • To fetch the latest Quartz updates, simply run
npx quartz update

For more details, refer Quartz 4.0 official documentation


Customising the site


Obsidian References

Site Inspirations

Tutorials & Youtube Videos

Documentations

  • Quartz 4.0
    • The documentation I referred to publish my Obsidian notes for free with Quarts

Non-obsidian Site Inspirations

Footnotes

  1. This is the referenced text.