Sample post for Serai DEX

Here is a sample post that includes relevant elements in Jekyll Markdown.

Heading Level 2

This a paragraph example. A paragraph is a subdivision of a written composition that consists of one or more sentences, deals with one point or gives the words of one speaker, and begins on a new usually indented line. This is not a long paragraph as you can see.

This is another paragraph. We will switch the topic and include the beginning of the book "Dandelion Wine". We will actually make it a quote.

It was a quiet morning, the town covered over with darkness and at ease in bed. Summer gathered in the weather, the wind had the proper touch, the breathing of the world was long and warm and slow. You had only to rise, lean from your window, and know that this indeed was the first real time of freedom and living, this was the first morning of summer.

Do you remember who wrote "Dandelion Wine"? Find out here. This is also an example of a link.

Sometimes you will need to inlude an image in the blog post. It is easy to do. For example, here is Serai DEX logo:

Serai DEX Logo

Heading Level 3

What about lists? Here are examples of an ordered and unordered lists.

  • Unordered list item 1

  • Unordered list item 2

  • Unordered list item 3

  • Unordered list item 4

  1. Ordered list item 1
  2. Ordered list item 2
  3. Ordered list item 3
    • Indented item
    • Indented item
  4. Ordered list item 4

Here is an example of a table:

Column 1 Column 2
Col 1-1 Col 2-1
Col 1-2 Col 2-2

Heading Level 4

Sometimes, especially in software guides, we need to include code in the body of text. Here is an example of a large chunk of code:

/* ---- particles.js config ---- */

particlesJS("particles-js", {
  "particles": {
    "number": {
      "value": 380,
      "density": {
        "enable": true,
        "value_area": 800
      }
    },
    "color": {
      "value": "#ffffff"
    },
    "shape": {
      "type": "circle",
      "stroke": {
        "width": 0,
        "color": "#000000"
      },
      "polygon": {
        "nb_sides": 5
      },
      "image": {
        "src": "img/github.svg",
        "width": 100,
        "height": 100
      }
    }
  },
  "retina_detect": true
});

Fore more Jekyll Markdown references, please go to https://www.markdownguide.org/basic-syntax/.