krata/_posts/2019-08-08-write-a-new-post.md

351 lines
9.5 KiB
Markdown
Raw Normal View History

2019-09-30 14:38:58 +02:00
---
2020-04-06 20:11:50 +02:00
title: Writing a New Post
2022-03-16 19:05:45 +01:00
author: cotes
2019-09-30 14:38:58 +02:00
date: 2019-08-08 14:10:00 +0800
categories: [Blogging, Tutorial]
2019-12-30 20:52:49 +01:00
tags: [writing]
2021-09-15 18:26:35 +02:00
render_with_liquid: false
2019-09-30 14:38:58 +02:00
---
2021-12-04 19:30:22 +01:00
This post will guide you how to write a post on _Chirpy_ theme. Even if you have previous experience with Jekyll, this article is worth reading, because many features require specific variables to be set.
2019-09-30 14:38:58 +02:00
## Naming and Path
2022-01-22 16:21:00 +01:00
Create a new file named `YYYY-MM-DD-TITLE.EXTENSION`{: .filepath} and put it in the `_posts`{: .filepath} of the root directory. Please note that the `EXTENSION`{: .filepath} must be one of `md`{: .filepath} and `markdown`{: .filepath}. If you want to save time of creating files, please consider using the plugin [`Jekyll-Compose`](https://github.com/jekyll/jekyll-compose) to accomplish this.
2019-09-30 14:38:58 +02:00
## Front Matter
Basically, you need to fill the [Front Matter](https://jekyllrb.com/docs/front-matter/) as below at the top of the post:
```yaml
---
title: TITLE
date: YYYY-MM-DD HH:MM:SS +/-TTTT
categories: [TOP_CATEGORIE, SUB_CATEGORIE]
2020-03-01 20:56:32 +01:00
tags: [TAG] # TAG names should always be lowercase
2019-09-30 14:38:58 +02:00
---
```
2022-01-21 14:38:50 +01:00
> The posts' _layout_ has been set to `post` by default, so there is no need to add the variable _layout_ in the Front Matter block.
2022-02-12 19:10:52 +01:00
{: .prompt-tip }
2019-09-30 14:38:58 +02:00
2021-12-04 19:30:22 +01:00
### Timezone of Date
2020-03-01 20:56:32 +01:00
2022-01-22 16:21:00 +01:00
In order to accurately record the release date of a post, you should not only set up the `timezone` of `_config.yml`{: .filepath} but also provide the post's timezone in variable `date` of its Front Matter block. Format: `+/-TTTT`, e.g. `+0800`.
2020-03-01 20:56:32 +01:00
2020-04-12 18:38:56 +02:00
### Categories and Tags
2019-09-30 14:38:58 +02:00
The `categories` of each post are designed to contain up to two elements, and the number of elements in `tags` can be zero to infinity. For instance:
2020-03-01 20:56:32 +01:00
```yaml
---
2020-03-01 20:56:32 +01:00
categories: [Animal, Insect]
2020-11-19 14:32:50 +01:00
tags: [bee]
---
2020-03-01 20:56:32 +01:00
```
2021-12-04 19:30:22 +01:00
### Author Information
The author information of the post usually does not need to be filled in the _Front Matter_ , they will be obtained from variables `social.name` and the first entry of `social.links` of the configuration file by default. But you can also override it as follows:
2022-03-16 19:05:45 +01:00
Add author information in `_data/authors.yml` (If your website doesn't have this file, don't hesitate to create one.)
```yaml
<author_id>:
name: <full name>
twitter: <twitter_of_author>
url: <homepage_of_author>
```
{: file="_data/authors.yml" }
And then set up the custom author in the post's YAML block:
2021-12-04 19:30:22 +01:00
```yaml
---
2022-03-16 19:05:45 +01:00
author: <author_id>
2021-12-04 19:30:22 +01:00
---
```
2020-03-01 20:56:32 +01:00
2022-03-16 19:05:45 +01:00
> Another benefit of reading the author information from the file `_data/authors.yml`{: .filepath } is that the page will have the meta tag `twitter:creator`, which enriches the [Twitter Cards](https://developer.twitter.com/en/docs/twitter-for-websites/cards/guides/getting-started#card-and-content-attribution) and is good for SEO.
{: .prompt-info }
2019-09-30 14:38:58 +02:00
## Table of Contents
2022-01-22 16:21:00 +01:00
By default, the **T**able **o**f **C**ontents (TOC) is displayed on the right panel of the post. If you want to turn it off globally, go to `_config.yml`{: .filepath} and set the value of variable `toc` to `false`. If you want to turn off TOC for a specific post, add the following to the post's [Front Matter](https://jekyllrb.com/docs/front-matter/):
2019-09-30 14:38:58 +02:00
```yaml
---
toc: false
---
```
## Comments
2022-01-22 16:21:00 +01:00
The global switch of comments is defined by variable `comments.active` in the file `_config.yml`{: .filepath}. After selecting a comment system for this variable, comments will be turned on for all posts.
If you want to close the comment for a specific post, add the following to the **Front Matter** of the post:
2019-09-30 14:38:58 +02:00
```yaml
---
comments: false
---
```
## Mathematics
For website performance reasons, the mathematical feature won't be loaded by default. But it can be enabled by:
```yaml
---
math: true
---
```
2020-12-09 23:39:03 +01:00
## Mermaid
[**Mermaid**](https://github.com/mermaid-js/mermaid) is a great diagrams generation tool. To enable it on your post, add the following to the YAML block:
2021-09-13 16:36:01 +02:00
```yaml
2020-12-09 23:39:03 +01:00
---
mermaid: true
---
```
Then you can use it like other markdown languages: surround the graph code with ```` ```mermaid ```` and ```` ``` ````.
2020-12-09 23:39:03 +01:00
## Images
### Caption
2020-12-09 23:39:03 +01:00
Add italics to the next line of an imagethen it will become the caption and appear at the bottom of the image:
```markdown
![img-description](/path/to/image)
_Image Caption_
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
### Size
2020-12-09 23:39:03 +01:00
In order to prevent the page content layout from shifting when the image is loaded, we should set the width and height for each image:
2020-12-09 23:39:03 +01:00
```markdown
![Desktop View](/assets/img/sample/mockup.png){: width="700" height="400" }
2020-12-09 23:39:03 +01:00
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
2022-01-02 17:00:34 +01:00
Starting from _Chirpy v5.0.0_, `height` and `width` support abbreviations (`height` → `h`, `width``w`). The following example has the same effect as the above:
2021-12-06 17:59:26 +01:00
```markdown
![Desktop View](/assets/img/sample/mockup.png){: w="700" h="400" }
```
{: .nolineno}
### Position
2020-12-09 23:39:03 +01:00
2022-01-21 14:38:50 +01:00
By default, the image is centered, but you can specify the position by using one of the classes `normal`, `left`, and `right`.
> Once the position is specified, the image caption should not be added.
{: .prompt-warning }
2020-12-09 23:39:03 +01:00
- **Normal position**
Image will be left aligned in below sample:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .normal }
2020-12-09 23:39:03 +01:00
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
- **Float to the left**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .left }
2020-12-09 23:39:03 +01:00
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
- **Float to the right**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .right }
2020-12-09 23:39:03 +01:00
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
### Shadow
2021-04-17 10:08:13 +02:00
The screenshots of the program window can be considered to show the shadow effect, and the shadow will be visible in the `light` mode:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .shadow }
2021-04-17 10:08:13 +02:00
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2021-04-17 10:08:13 +02:00
2021-01-09 15:33:49 +01:00
### CDN URL
2022-01-22 16:21:00 +01:00
If you host the images on the CDN, you can save the time of repeatedly writing the CDN URL by assigning the variable `img_cdn` of `_config.yml`{: .filepath} file:
2021-01-09 15:33:49 +01:00
```yaml
img_cdn: https://cdn.com
```
2021-09-15 18:26:35 +02:00
{: file='_config.yml' .nolineno}
2021-01-09 15:33:49 +01:00
Once `img_cdn` is assigned, the CDN URL will be added to the path of all images (images of site avatar and posts) starting with `/`.
2021-01-09 15:33:49 +01:00
For instance, when using images:
```markdown
![The flower](/path/to/flower.png)
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2021-01-09 15:33:49 +01:00
The parsing result will automatically add the CDN prefix `https://cdn.com` before the image path:
```html
<img src="https://cdn.com/path/to/flower.png" alt="The flower">
```
2021-09-13 16:36:01 +02:00
{: .nolineno}
2020-12-09 23:39:03 +01:00
### Image Path
2021-12-14 16:29:07 +01:00
When a post contains many images, it will be a time-consuming task to repeatedly define the path of the images. To solve this, we can define this path in the YAML block of the post:
```yml
---
img_path: /img/path/
---
```
{: .nolineno }
And then, the image source of Markdown can write the file name directly:
```md
![The flower](flower.png)
```
{: .nolineno }
The output will be:
```html
<img src="/img/path/flower.png" alt="The flower">
```
{: .nolineno }
### Preview Image
If you want to add an image to the top of the post contents, specify the attribute `path`, `width`, `height`, and `alt` for the image:
```yaml
---
image:
path: /path/to/image/file
width: 1000 # in pixels
height: 400 # in pixels
alt: image alternative text
---
```
Except for `alt`, all other options are necessary, especially the `width` and `height`, which are related to user experience and web page loading performance. The above section "[Size](#size)" also mentions this.
Starting from _Chirpy v5.0.0_, the attributes `height` and `width` can be abbreviated: `height``h`, `width``w`. In addition, the [`img_path`](#image-path) can also be passed to the preview image, that is, when it has been set, the attribute `path` only needs the image file name.
2020-06-06 06:45:33 +02:00
## Pinned Posts
You can pin one or more posts to the top of the home page, and the fixed posts are sorted in reverse order according to their release date. Enable by:
```yaml
---
pin: true
---
```
2022-01-21 14:38:50 +01:00
## Prompts
2022-02-12 19:10:52 +01:00
There are several types of prompts: `tip`, `info`, `warning`, and `danger`. They can be generated by adding the class `prompt-{type}` to the blockquote. For example, define a prompt of type `info` as follows:
2022-01-21 14:38:50 +01:00
2022-02-12 19:10:52 +01:00
```md
> Example line for prompt.
{: .prompt-info }
```
{: .nolineno }
2022-01-21 14:38:50 +01:00
2022-01-22 16:21:00 +01:00
## Syntax
### Inline Code
```md
`inline code part`
```
{: .nolineno }
### Filepath Hightlight
```md
`/path/to/a/file.extend`{: .filepath}
```
{: .nolineno }
### Code Block
2019-09-30 14:38:58 +02:00
2021-09-15 18:26:35 +02:00
Markdown symbols ```` ``` ```` can easily create a code block as follows:
2019-09-30 14:38:58 +02:00
2022-01-08 20:01:00 +01:00
````md
2019-09-30 14:38:58 +02:00
```
2021-09-15 18:26:35 +02:00
This is a plaintext code snippet.
2019-09-30 14:38:58 +02:00
```
2022-01-08 20:01:00 +01:00
````
2019-09-30 14:38:58 +02:00
2022-01-22 16:21:00 +01:00
#### Specifying Language
2019-09-30 14:38:58 +02:00
2021-09-15 18:26:35 +02:00
Using ```` ```{language} ```` you will get a code block with syntax highlight:
2019-09-30 14:38:58 +02:00
2021-09-15 18:26:35 +02:00
````markdown
2019-09-30 14:38:58 +02:00
```yaml
2021-09-15 18:26:35 +02:00
key: value
2019-09-30 14:38:58 +02:00
```
2021-09-15 18:26:35 +02:00
````
2019-09-30 14:38:58 +02:00
2022-01-21 14:38:50 +01:00
> The Jekyll tag `{% highlight %}` is not compatible with this theme.
{: .prompt-danger }
2021-09-13 16:36:01 +02:00
2022-01-22 16:21:00 +01:00
#### Line Number
2021-09-15 18:26:35 +02:00
2022-01-08 20:01:00 +01:00
By default, all languages except `plaintext`, `console`, and `terminal` will display line numbers. When you want to hide the line number of a code block, add the class `nolineno` to it:
2021-09-13 16:36:01 +02:00
````markdown
```shell
echo 'No more line numbers!'
```
2022-01-08 20:01:00 +01:00
{: .nolineno }
2021-09-13 16:36:01 +02:00
````
2022-01-22 16:21:00 +01:00
#### Specifying the Filename
2021-09-15 18:26:35 +02:00
2022-01-08 20:01:00 +01:00
You may have noticed that the code language will be displayed at the top of the code block. If you want to replace it with the file name, you can add the attribute `file` to achieve this:
2021-09-15 18:26:35 +02:00
````markdown
```shell
# content
```
{: file="path/to/file" }
````
2022-01-22 16:21:00 +01:00
#### Liquid Codes
2019-09-30 14:38:58 +02:00
2021-09-15 18:26:35 +02:00
If you want to display the **Liquid** snippet, surround the liquid code with `{% raw %}` and `{% endraw %}`:
2019-09-30 14:38:58 +02:00
2021-09-15 18:26:35 +02:00
````markdown
2019-09-30 14:38:58 +02:00
{% raw %}
```liquid
{% if product.title contains 'Pack' %}
This product's title contains the word Pack.
{% endif %}
```
{% endraw %}
2021-09-15 18:26:35 +02:00
````
Or adding `render_with_liquid: false` (Requires Jekyll 4.0 or higher) to the post's YAML block.
2019-09-30 14:38:58 +02:00
## Learn More
2019-09-30 14:38:58 +02:00
For more knowledge about Jekyll posts, visit the [Jekyll Docs: Posts](https://jekyllrb.com/docs/posts/).