mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 15:35:42 -05:00
* PUSH NOTE : Stub.md * PUSH NOTE : Projects Overview.md * PUSH NOTE : index.md * PUSH NOTE : Upcoming Concerts.md * PUSH NOTE : Scry Your Tasks.md * PUSH NOTE : Rhombic Dodecahedron d12.md * PUSH NOTE : Rhizomatic Learning.md * PUSH NOTE : Move Your Body.md * PUSH NOTE : Markdown.md * PUSH NOTE : Consistency.md * PUSH NOTE : NeoVim.md * PUSH NOTE : Meta.md * PUSH NOTE : Markdown Demo.md * PUSH NOTE : Wishlist.md * PUSH NOTE : Tools.md * PUSH NOTE : Side Effects of Sitting Down.md * PUSH NOTE : Podcasts.md * PUSH NOTE : Procrastination.md * PUSH NOTE : Newsletters.md * PUSH NOTE : Life Lessons.md * PUSH NOTE : Inspirations.md * PUSH NOTE : Writing with Outlines.md * PUSH NOTE : Story Structure.md * PUSH NOTE : Poetry.md * PUSH NOTE : Meditation.md * PUSH NOTE : Guitar.md * PUSH NOTE : Health and Wellness.md * PUSH NOTE : Unlock Firefox Sidebar.md * PUSH NOTE : Grammar.md * PUSH NOTE : Free Facts.md * PUSH NOTE : Explore.md * PUSH NOTE : Words I Like.md * PUSH NOTE : Quotes Collection.md * PUSH NOTE : Bookmarklets.md * PUSH NOTE : Bookmark Collections.md * PUSH NOTE : Chuckwalla.md * PUSH NOTE : Callouts.md * PUSH NOTE : Sweep Your Mind.md * PUSH NOTE : Serif.md * PUSH NOTE : Scope of Work.md * PUSH NOTE : Sans-serif.md * PUSH NOTE : Micropolitan Statistical Area.md * PUSH NOTE : Digital Garden.md * PUSH NOTE : Continuous Care.md * PUSH NOTE : Chords.md * PUSH NOTE : Atomic Notes.md * PUSH NOTE : Arpeggio.md * PUSH NOTE : About.md * PUSH NOTE : Public Journal.md * PUSH NOTE : Digital Garden Colors.md * PUSH NOTE : SSD NVMe Comparison.md * PUSH NOTE : Aurora Borealis Sighting.md
110 lines
1.6 KiB
Markdown
110 lines
1.6 KiB
Markdown
---
|
||
title: Markdown Demo
|
||
tags:
|
||
- reference
|
||
compartir: true
|
||
lastmod: 2023-09-18
|
||
---
|
||
|
||
# H1 Heading 1
|
||
|
||
## H2 Heading 2
|
||
|
||
### H3 Heading 3
|
||
|
||
#### H4 Heading 4
|
||
|
||
##### H5 Heading 5
|
||
|
||
###### H6 Heading 6
|
||
|
||
## Text Formatting
|
||
|
||
Text can be **bold**, _italic_, or ~~strikethrough~~.
|
||
|
||
You can [link](https://example.dom/) to external pages. and other internal [[Markdown|links]].
|
||
|
||
## Lists
|
||
|
||
* Item 1
|
||
* Item 2
|
||
* Nested item
|
||
* Item 3
|
||
|
||
1. Line item
|
||
2. Line item
|
||
1. Nested item
|
||
3. Line item
|
||
|
||
## Blockquote
|
||
|
||
> ## This is a header.
|
||
> 1. This is the first list item.
|
||
> 2. This is the second list item.
|
||
>
|
||
> Here's some example code:
|
||
>
|
||
> Markdown.generate();
|
||
|
||
## Code
|
||
|
||
### Inline Code
|
||
|
||
Let us use some `inline code` and check out how it `looks`. Here's some `more`.
|
||
|
||
### Code Blocks
|
||
|
||
```html
|
||
<html>
|
||
<head>
|
||
<div style="background-color: #333;">
|
||
<a href="https://example.com/">Example</a>
|
||
</div>
|
||
</head>
|
||
</html>
|
||
```
|
||
|
||
```css
|
||
.niceClass {
|
||
color: blue;
|
||
background-color: #fff;
|
||
}
|
||
```
|
||
|
||
```js
|
||
// Javascript code with syntax highlighting.
|
||
var fun = function lang(l) {
|
||
dateformat.i18n = require('./lang/' + l)
|
||
return true;
|
||
}
|
||
```
|
||
|
||
## Tables
|
||
|
||
|head one|head two|head three|
|
||
|---|---|---|
|
||
|ok|good swedish fish|nice|
|
||
|out of stock|good and plenty|nice|
|
||
|ok|good `oreos`|hmm|
|
||
|ok|good `zoute` drop|yumm|
|
||
|
||
## Horizontal Rule
|
||
|
||
---
|
||
|
||
## Tasks and Todos
|
||
|
||
- [ ] Pending Task
|
||
- [x] Completed Task
|
||
* [-] Won't Do Task
|
||
* [/] In Progress Task
|
||
* [*] You are a star.
|
||
* [!] Exclamation Mark!
|
||
* [?] Question Mark?
|
||
* [<] Scheduled Task
|
||
* [>] Forwarded Task
|
||
|
||
## Images
|
||
|
||

|