Example post

2022-07-15
2 min read

Text markup

Basic markup

  • text
  • bold
  • italic
  • underlined
  • verbatim
  • code
  • strike-through

Blocks

Python

print("Hellow world")

Lisp

  (+ 1 2 3 4)

**

Example

example block

Qoute

Qoue

This is qoute

Everything should be made as simple as possible, but not any simpler – Albert Einstein

Verse

Great clouds overhead
Tiny black birds rise and fall
Snow covers Emacs

   —AlexSchroeder

Center

Great clouds overhead
Tiny black birds rise and fall
Snow covers Emacs

   —AlexSchroeder

Comment

Comment

Tasks [1/3] [33%]

  • task
  • [-] task
    • task 1
    • task 2
  • task 3

TODO List

TODO Task

PROJ Task

LOOP Task

STRT Task

WAIT Task

HOLD Task

IDEA Task

DONE Task

KILL Task

Tables

NameAge
Bob27
Alice23

Inline Markdown within tables

ItalicsBoldCode
——–——–——
italicsbold`code`

Latex

Formulas

Inline formula \(e^{i\pi}=-1\) \(x=a\)

Mid formula \[e^{i\pi}=-1\] \[x=a\]

\begin{equation} x=\sqrt{b} \end{equation}

If \(a^2=b\) and \( b=2 \), then the solution must be either \[ a=+\sqrt{2} \] or \[ a=-\sqrt{2} \].

Table

\begin{center} \begin{tabular}{l c r} cell1 & cell2 & cell31232 \\ cell4123 & cell5 & cell6 \\ cell7 & cell8123 & cell9 \end{tabular} \end{center}

Other

Matrix:

<div> \[ \begin{pmatrix} a&b\\c&d \end{pmatrix} \quad \begin{bmatrix} a&b\\c&d \end{bmatrix} \quad \begin{Bmatrix} a&b\\c&d \end{Bmatrix} \quad \begin{vmatrix} a&b\\c&d \end{vmatrix} \] </div>

Aligned equation:

<div> \[\begin{aligned} x ={}& a+b+c+{} \\ &d+e+f+g \end{aligned}\] </div>

Diagram

<div class=“mermaid”>

graph TD
  A[Client] --> B[Load Balancer]
  B --> C[Server1]
  B --> D[Server2]

</div> <div class=“mermaid”> graph TD A[Client] –> B[Load Balancer] B –> C[Server1] B –> D[Server2] </div>


  1. footnote ↩︎

Next mo1