Demo Codes

Demo Codes

Hello World!

Ada

with Ada.Text_IO;

procedure Hello_World is
 use Ada.Text_IO;
begin
    Put_Line("Hello, world!");
end;

C

#include <stdio.h>

int main(int argc, char *argv[])
{
    printf("Hello, world!\n");

    return 0;
}

C++

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello, world!" << endl;
    return 0;
}

HTML

<!DOCTYPE html …
Demo Fonts

Demo Fonts

The font-family is below:

  • 'Noto Sans TC', 'Open Sans', sans-serif;
  • 'Noto Serif TC', 'Times New Roman', serif;

English

To generate its HTML output, Pelican uses the Jinja templating engine due to its flexibility and straightforward syntax. If you want to create your own theme, feel free to take inspiration from …

Demo Post

Demo Post

h1 heading

h2 heading

h3 heading

h4 heading

h5 heading
h6 heading

Unordered List

  • apple
  • ball
  • cat

Ordered List

  1. apple
  2. ball
  3. cat

Quotes

Pelican is a static site generator, written in Python. Highlights include:

Write your content directly with your editor of choice in reStructuredText or Markdown formats Includes a …