images
Markdown Template
2022/10/19This is the first article, including many native rendered markdown elements


Article模块仍在建设中,以下是一些测试

Article module is still under construction. There are some tests as follow.

This is the second line

Testing block quote

Header 1

Header 2

Header 3

Header 4

Paragraph: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis fugit earum voluptas officia, quasi saepe et commodi, dolores cumque quam fuga ullam, itaque ea dignissimos asperiores adipisci ad eveniet repellendus

em: Lorem ipsum dolor sit amet, consectetur adipisicing elit.

bold: Lorem ipsum dolor sit amet, consectetur adipisicing elit.

em bold: Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Inline Code

How to say hello: print('hello')

Interal link: To article

External link: To Google

Inline code link: <Text>

Link in quote: gallery

Order List

Shopping list:

  1. Milk
  2. Butter
  3. Sirloin
  4. Some code snippets

Unorder List

Shopping list:

  • Milk
  • Eggs
  • Butter
    • Salted
  • Sirloin
  • Some code snippets

Codeblock

creature/human.py
python
import randomfrom Spirit import soulfrom Material import bodyhuman = soul + bodyclass Human:    """A class of human being"""    def __init__(self, soul, body):        self.personality = soul.color        self.looking = body.gene        self.health = 100    def eating(self, food):        self.health += food.valuea = Human(random(soul), random(body))
just some text
title
just some text with title
Designed & Coded by Tianyu @2022