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

506 lines
15 KiB
Markdown
Raw Permalink Normal View History

2019-09-30 15:38:58 +03:00
---
2020-04-06 21:11:50 +03:00
title: Writing a New Post
2022-03-16 21:05:45 +03:00
author: cotes
2019-09-30 15:38:58 +03:00
date: 2019-08-08 14:10:00 +0800
categories: [Blogging, Tutorial]
2019-12-30 22:52:49 +03:00
tags: [writing]
2021-09-15 19:26:35 +03:00
render_with_liquid: false
2019-09-30 15:38:58 +03:00
---
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.
2021-12-04 21:30:22 +03:00
2019-09-30 15:38:58 +03:00
## Naming and Path
2022-01-22 18:21:00 +03: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 15:38:58 +03: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 22:56:32 +03:00
tags: [TAG] # TAG names should always be lowercase
2019-09-30 15:38:58 +03:00
---
```
2022-01-21 16:38:50 +03: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 21:10:52 +03:00
{: .prompt-tip }
2019-09-30 15:38:58 +03:00
2021-12-04 21:30:22 +03:00
### Timezone of Date
2020-03-01 22:56:32 +03:00
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 22:56:32 +03:00
2020-04-12 19:38:56 +03:00
### Categories and Tags
2019-09-30 15:38:58 +03: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 22:56:32 +03:00
```yaml
---
2020-03-01 22:56:32 +03:00
categories: [Animal, Insect]
2020-11-19 16:32:50 +03:00
tags: [bee]
---
2020-03-01 22:56:32 +03:00
```
2021-12-04 21:30:22 +03: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:
Adding author information in `_data/authors.yml` (If your website doesn't have this file, don't hesitate to create one).
2022-03-16 21:05:45 +03:00
```yaml
<author_id>:
name: <full name>
twitter: <twitter_of_author>
url: <homepage_of_author>
```
{: file="_data/authors.yml" }
And then use `author` to specify a single entry or `authors` to specify multiple entries:
2022-03-16 21:05:45 +03:00
2021-12-04 21:30:22 +03:00
```yaml
---
author: <author_id> # for single entry
# or
authors: [<author1_id>, <author2_id>] # for multiple entries
2021-12-04 21:30:22 +03:00
---
```
2020-03-01 22:56:32 +03:00
Having said that, the key `author` can also identify multiple entries.
> The 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.
2022-03-16 21:05:45 +03:00
{: .prompt-info }
### Post Description
By default, the first words of the post are used to display on the home page for a list of posts, in the _Further Reading_ section, and in the XML of the RSS feed. If you don't want to display the auto-generated description for the post, you can customize it using the `description` field in the _Front Matter_ as follows:
```yaml
---
description: Short summary of the post.
---
```
Additionally, the `description` text will also be displayed under the post title on the post's page.
2019-09-30 15:38:58 +03:00
## Table of Contents
2022-01-22 18:21:00 +03: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 15:38:58 +03:00
```yaml
---
toc: false
---
```
## Comments
2022-01-22 18:21:00 +03: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 15:38:58 +03:00
```yaml
---
comments: false
---
```
## Media
We refer to images, audio and video as media resources in _Chirpy_.
### URL Prefix
From time to time we have to define duplicate URL prefixes for multiple resources in a post, which is a boring task that you can avoid by setting two parameters.
- If you are using a CDN to host media files, you can specify the `cdn` in `_config.yml`{: .filepath }. The URLs of media resources for site avatar and posts are then prefixed with the CDN domain name.
```yaml
cdn: https://cdn.com
```
{: file='_config.yml' .nolineno }
2020-12-10 01:39:03 +03:00
- To specify the resource path prefix for the current post/page range, set `media_subpath` in the _front matter_ of the post:
2020-12-10 01:39:03 +03:00
```yaml
---
media_subpath: /path/to/media/
---
```
{: .nolineno }
2020-12-10 01:39:03 +03:00
The option `site.cdn` and `page.media_subpath` can be used individually or in combination to flexibly compose the final resource URL: `[site.cdn/][page.media_subpath/]file.ext`
2020-12-10 01:39:03 +03:00
### Images
2020-12-10 01:39:03 +03:00
#### Caption
2020-12-10 01:39:03 +03:00
Add italics to the next line of an image, then it will become the caption and appear at the bottom of the image:
2020-12-10 01:39:03 +03:00
```markdown
![img-description](/path/to/image)
_Image Caption_
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2020-12-10 01:39:03 +03:00
#### Size
2020-12-10 01:39:03 +03:00
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-10 01:39:03 +03:00
```markdown
![Desktop View](/assets/img/sample/mockup.png){: width="700" height="400" }
2020-12-10 01:39:03 +03:00
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2020-12-10 01:39:03 +03:00
> For an SVG, you have to at least specify its _width_, otherwise it won't be rendered.
{: .prompt-info }
2022-01-02 19:00:34 +03: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 19:59:26 +03:00
```markdown
![Desktop View](/assets/img/sample/mockup.png){: w="700" h="400" }
```
{: .nolineno}
#### Position
2020-12-10 01:39:03 +03:00
2022-01-21 16:38:50 +03: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-10 01:39:03 +03:00
- **Normal position**
Image will be left aligned in below sample:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .normal }
2020-12-10 01:39:03 +03:00
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2020-12-10 01:39:03 +03:00
- **Float to the left**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .left }
2020-12-10 01:39:03 +03:00
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2020-12-10 01:39:03 +03:00
- **Float to the right**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .right }
2020-12-10 01:39:03 +03:00
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2020-12-10 01:39:03 +03:00
#### Dark/Light mode
You can make images follow theme preferences in dark/light mode. This requires you to prepare two images, one for dark mode and one for light mode, and then assign them a specific class (`dark` or `light`):
```markdown
![Light mode only](/path/to/light-mode.png){: .light }
![Dark mode only](/path/to/dark-mode.png){: .dark }
```
#### Shadow
2021-04-17 11:08:13 +03:00
The screenshots of the program window can be considered to show the shadow effect:
2021-04-17 11:08:13 +03:00
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .shadow }
2021-04-17 11:08:13 +03:00
```
2021-09-13 17:36:01 +03:00
{: .nolineno}
2021-04-17 11:08:13 +03:00
#### Preview Image
If you want to add an image at the top of the post, please provide an image with a resolution of `1200 x 630`. Please note that if the image aspect ratio does not meet `1.91 : 1`, the image will be scaled and cropped.
Knowing these prerequisites, you can start setting the image's attribute:
```yaml
---
image:
path: /path/to/image
alt: image alternative text
---
```
Note that the [`media_subpath`](#url-prefix) can also be passed to the preview image, that is, when it has been set, the attribute `path` only needs the image file name.
For simple use, you can also just use `image` to define the path.
```yml
---
image: /path/to/image
---
```
#### LQIP
For preview images:
```yaml
---
image:
lqip: /path/to/lqip-file # or base64 URI
---
```
> You can observe LQIP in the preview image of post \"[Text and Typography](../text-and-typography/)\".
For normal images:
```markdown
![Image description](/path/to/image){: lqip="/path/to/lqip-file" }
```
{: .nolineno }
### Video
#### Social Media Platform
You can embed videos from social media platforms with the following syntax:
```liquid
{% include embed/{Platform}.html id='{ID}' %}
```
Where `Platform` is the lowercase of the platform name, and `ID` is the video ID.
The following table shows how to get the two parameters we need in a given video URL, and you can also know the currently supported video platforms.
| Video URL | Platform | ID |
| -------------------------------------------------------------------------------------------------- | ---------- | :------------- |
| [https://www.**youtube**.com/watch?v=**H-B46URT4mg**](https://www.youtube.com/watch?v=H-B46URT4mg) | `youtube` | `H-B46URT4mg` |
| [https://www.**twitch**.tv/videos/**1634779211**](https://www.twitch.tv/videos/1634779211) | `twitch` | `1634779211` |
| [https://www.**bilibili**.com/video/**BV1Q44y1B7Wf**](https://www.bilibili.com/video/BV1Q44y1B7Wf) | `bilibili` | `BV1Q44y1B7Wf` |
#### Video Files
If you want to embed a video file directly, use the following syntax:
```liquid
{% include embed/video.html src='{URL}' %}
```
Where `URL` is a URL to a video file e.g. `/path/to/sample/video.mp4`.
You can also specify additional attributes for the embedded video file. Here is a full list of attributes allowed.
- `poster='/path/to/poster.png'` — poster image for a video that is shown while video is downloading
- `title='Text'` — title for a video that appears below the video and looks same as for images
- `autoplay=true` — video automatically begins to play back as soon as it can
- `loop=true` — automatically seek back to the start upon reaching the end of the video
- `muted=true` — audio will be initially silenced
- `types` — specify the extensions of additional video formats separated by `|`. Ensure these files exist in the same directory as your primary video file.
Consider an example using all of the above:
```liquid
{%
include embed/video.html
src='/path/to/video.mp4'
types='ogg|mov'
poster='poster.png'
title='Demo video'
autoplay=true
loop=true
muted=true
%}
```
### Audios
If you want to embed an audio file directly, use the following syntax:
```liquid
{% include embed/audio.html src='{URL}' %}
```
Where `URL` is a URL to an audio file e.g. `/path/to/audio.mp3`.
You can also specify additional attributes for the embedded audio file. Here is a full list of attributes allowed.
- `title='Text'` — title for an audio that appears below the audio and looks same as for images
- `types` — specify the extensions of additional audio formats separated by `|`. Ensure these files exist in the same directory as your primary audio file.
Consider an example using all of the above:
```liquid
{%
include embed/audio.html
src='/path/to/audio.mp3'
types='ogg|wav|aac'
title='Demo audio'
%}
```
2020-06-06 07:45:33 +03: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 16:38:50 +03:00
## Prompts
2022-02-12 21:10:52 +03: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 16:38:50 +03:00
2022-02-12 21:10:52 +03:00
```md
> Example line for prompt.
{: .prompt-info }
```
{: .nolineno }
2022-01-21 16:38:50 +03:00
2022-01-22 18:21:00 +03:00
## Syntax
### Inline Code
```md
`inline code part`
```
{: .nolineno }
### Filepath Highlight
2022-01-22 18:21:00 +03:00
```md
`/path/to/a/file.extend`{: .filepath}
```
{: .nolineno }
### Code Block
2019-09-30 15:38:58 +03:00
2021-09-15 19:26:35 +03:00
Markdown symbols ```` ``` ```` can easily create a code block as follows:
2019-09-30 15:38:58 +03:00
2022-01-08 22:01:00 +03:00
````md
2019-09-30 15:38:58 +03:00
```
2021-09-15 19:26:35 +03:00
This is a plaintext code snippet.
2019-09-30 15:38:58 +03:00
```
2022-01-08 22:01:00 +03:00
````
2019-09-30 15:38:58 +03:00
2022-01-22 18:21:00 +03:00
#### Specifying Language
2019-09-30 15:38:58 +03:00
2021-09-15 19:26:35 +03:00
Using ```` ```{language} ```` you will get a code block with syntax highlight:
2019-09-30 15:38:58 +03:00
2021-09-15 19:26:35 +03:00
````markdown
2019-09-30 15:38:58 +03:00
```yaml
2021-09-15 19:26:35 +03:00
key: value
2019-09-30 15:38:58 +03:00
```
2021-09-15 19:26:35 +03:00
````
2019-09-30 15:38:58 +03:00
2022-01-21 16:38:50 +03:00
> The Jekyll tag `{% highlight %}` is not compatible with this theme.
{: .prompt-danger }
2021-09-13 17:36:01 +03:00
2022-01-22 18:21:00 +03:00
#### Line Number
2021-09-15 19:26:35 +03:00
2022-01-08 22:01:00 +03: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 17:36:01 +03:00
````markdown
```shell
echo 'No more line numbers!'
```
2022-01-08 22:01:00 +03:00
{: .nolineno }
2021-09-13 17:36:01 +03:00
````
2022-01-22 18:21:00 +03:00
#### Specifying the Filename
2021-09-15 19:26:35 +03:00
2022-01-08 22:01:00 +03: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 19:26:35 +03:00
````markdown
```shell
# content
```
{: file="path/to/file" }
````
2022-01-22 18:21:00 +03:00
#### Liquid Codes
2019-09-30 15:38:58 +03:00
2021-09-15 19:26:35 +03:00
If you want to display the **Liquid** snippet, surround the liquid code with `{% raw %}` and `{% endraw %}`:
2019-09-30 15:38:58 +03:00
2021-09-15 19:26:35 +03:00
````markdown
2019-09-30 15:38:58 +03:00
{% raw %}
```liquid
{% if product.title contains 'Pack' %}
This product's title contains the word Pack.
{% endif %}
```
{% endraw %}
2021-09-15 19:26:35 +03:00
````
Or adding `render_with_liquid: false` (Requires Jekyll 4.0 or higher) to the post's YAML block.
2019-09-30 15:38:58 +03:00
## Mathematics
We use [**MathJax**][mathjax] to generate mathematics. For website performance reasons, the mathematical feature won't be loaded by default. But it can be enabled by:
[mathjax]: https://www.mathjax.org/
```yaml
---
math: true
---
```
After enabling the mathematical feature, you can add math equations with the following syntax:
- **Block math** should be added with `$$ math $$` with **mandatory** blank lines before and after `$$`
- **Inserting equation numbering** should be added with `$$\begin{equation} math \end{equation}$$`
- **Referencing equation numbering** should be done with `\label{eq:label_name}` in the equation block and `\eqref{eq:label_name}` inline with text (see example below)
- **Inline math** (in lines) should be added with `$$ math $$` without any blank line before or after `$$`
- **Inline math** (in lists) should be added with `\$$ math $$`
```markdown
<!-- Block math, keep all blank lines -->
$$
LaTeX_math_expression
$$
<!-- Equation numbering, keep all blank lines -->
$$
\begin{equation}
LaTeX_math_expression
\label{eq:label_name}
\end{equation}
$$
Can be referenced as \eqref{eq:label_name}.
<!-- Inline math in lines, NO blank lines -->
"Lorem ipsum dolor sit amet, $$ LaTeX_math_expression $$ consectetur adipiscing elit."
<!-- Inline math in lists, escape the first `$` -->
1. \$$ LaTeX_math_expression $$
2. \$$ LaTeX_math_expression $$
3. \$$ LaTeX_math_expression $$
```
> Starting with `v7.0.0`, configuration options for **MathJax** have been moved to file `assets/js/data/mathjax.js`{: .filepath }, and you can change the options as needed, such as adding [extensions][mathjax-exts].
> If you are building the site via `chirpy-starter`, copy that file from the gem installation directory (check with command `bundle info --path jekyll-theme-chirpy`) to the same directory in your repository.
{: .prompt-tip }
[mathjax-exts]: https://docs.mathjax.org/en/latest/input/tex/extensions/index.html
## Mermaid
[**Mermaid**](https://github.com/mermaid-js/mermaid) is a great diagram generation tool. To enable it on your post, add the following to the YAML block:
```yaml
---
mermaid: true
---
```
Then you can use it like other markdown languages: surround the graph code with ```` ```mermaid ```` and ```` ``` ````.
2019-09-30 15:38:58 +03:00
## Learn More
2019-09-30 15:38:58 +03:00
For more knowledge about Jekyll posts, visit the [Jekyll Docs: Posts](https://jekyllrb.com/docs/posts/).