Using markdown to display tables is easy.

Simple Example

First, add the following to the post's front matter

pretty_table: true

Then, the following syntax

| Left aligned | Center aligned | Right aligned |
| :----------- | :------------: | ------------: |
| Left 1       |    center 1    |       right 1 |
| Left 2       |    center 2    |       right 2 |
| Left 3       |    center 3    |       right 3 |

will generate …

This post shows how to add a table of contents in the beginning of the post.

Adding a Table of Contents

To add a table of contents to a post, simply add

toc:
  beginning: true

to the front matter of the post. The table of contents will be automatically generated …

authors: - name: Albert Einstein url: "https://en.wikipedia.org/wiki/Albert_Einstein" affiliations: name: IAS, Princeton - name: Boris Podolsky url: "https://en.wikipedia.org/wiki/Boris_Podolsky" affiliations: name: IAS, Princeton - name: Nathan Rosen url: "https://en.wikipedia.org/wiki/Nathan_Rosen" affiliations: name: IAS, Princeton

bibliography: 2018-12-22-distill.bib

Optionally, you can add …

The favicons of Chirpy are placed in the directory assets/img/favicons/. You may want to replace them with your own. The following sections will guide you to create and replace the default favicons.

Generate the favicon

Prepare a square image (PNG, JPG, or SVG) with a size of 512x512 …

Get started with Chirpy basics in this comprehensive overview. You will learn how to install, configure, and use your first Chirpy-based website, as well as deploy it to a web server. author: cotes date: 2019-08-09T20:55:00+0800 categories: [Blogging, Tutorial] tags: [getting started] pin: true media_subpath: '/posts/20180809'


Creating …

This tutorial will guide you how to write a post in the Chirpy template, and it's worth reading even if you've used Jekyll before, as many features require specific variables to be set.

Naming and Path

Create a new file named YYYY-MM-DD-TITLE.EXTENSION and put it in the _posts of …