STATUS: CONNECTED
LATENCY: 42ms

LOG // Markdown Test Page


Headers

This is a Heading h1

This is a Heading h2

This is a Heading h6

Emphasis

This text will be italic This will also be italic

This text will be bold This will also be bold

You can combine them

Lists

Unordered

  • Item 1
  • Item 2
  • Item 2a
  • Item 2b
  • Item 3a
  • Item 3b

Ordered

  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 3a
  5. Item 3b

Images

Paragraph goes here

This is an alt text.

You may be using Markdown Live Preview.

Blockquotes

Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz.

Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.

Tables

Left columnsRight columns
left fooright foo
left barright bar
left bazright baz

Blocks of code

let message = "Hello world";
alert(message);

Inline code

This web site is using markedjs/marked.

Math

Inline Math

The quadratic formula is $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$.

Block Math

$$ \int_0^{\infty} e^{-x^2} dx = \frac{\sqrt{\pi}}{2} $$

$$ E = mc^2 $$

Mermaid Diagrams

Flowchart

  flowchart TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> B
C --> E[End]

Sequence Diagram

  sequenceDiagram
participant User
participant Browser
participant Server
User->>Browser: Open website
Browser->>Server: Request page
Server->>Browser: Return HTML
Browser->>User: Display page

Pie Chart

  pie title Browser Market Share
"Chrome" : 65
"Safari" : 20
"Firefox" : 10
"Others" : 5

Class Diagram

  classDiagram
class Post {
+string slug
+string title
+Date date
+string content
+getTitle()
+getDate()
}
class AssetManager {
+getPost(slug)
+getData()
}
AssetManager --> Post