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

209 lines
5.4 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
author: Cotes Chung
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]
2019-09-30 14:38:58 +02:00
---
## Naming and Path
2020-12-28 22:52:27 +01:00
Create a new file named `YYYY-MM-DD-TITLE.EXTENSION` and put it in the `_posts/` of the root directory. Please note that the `EXTENSION` must be one of `md` and `markdown`.
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
---
```
> **Note**: The posts' ***layout*** has been set to `post` by default, so there is no need to add the variable ***layout*** in Front Matter block.
2020-04-12 18:38:56 +02:00
### Timezone of date
2020-03-01 20:56:32 +01:00
2020-04-12 18:38:56 +02:00
In order to accurately record the release date of a post, you should not only setup the `timezone` of `_config.yml` but also provide the the post's timezone in field `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
2020-11-19 14:32:50 +01:00
The `categories` of each post is 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
categories: [Animal, Insect]
2020-11-19 14:32:50 +01:00
tags: [bee]
2020-03-01 20:56:32 +01:00
```
2019-09-30 14:38:58 +02:00
## Table of Contents
2020-08-02 20:25:40 +02: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` and set the value of variable `toc` to `false`. If you want to turn off TOC for specific post, add the following to post's [Front Matter](https://jekyllrb.com/docs/front-matter/):
2019-09-30 14:38:58 +02:00
```yaml
---
toc: false
---
```
## Comments
Similar to TOC, the [Disqus](https://disqus.com/) comments is loaded by default in each post, and the global switch is defined by variable `comments` in file `_config.yml` . If you want to close the comment for specific post, add the following to the **Front Matter** of the post:
```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:
```yml
---
mermaid: true
---
```
Then you can use it like other markdown language: surround the graph code with ```` ```mermaid ```` and ```` ``` ````.
2020-12-09 23:39:03 +01:00
## Images
### Preview image
If you want to add an image to the top of the post contents, specify the url for the image by:
```yaml
---
image: /path/to/image-file
---
```
2020-12-09 23:39:03 +01:00
### Image caption
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_
```
### Image size
You can specify the width (and height) of a image with `width`:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: width="400"}
```
### Image position
By default, the image is centered, but you can specify the position by using one of class `normal` , `left` and `right`. For example:
- **Normal position**
Image will be left aligned in below sample:
```markdown
2021-01-09 15:33:49 +01:00
![Desktop View](/assets/img/sample/mockup.png){: .normal}
2020-12-09 23:39:03 +01:00
```
- **Float to the left**
```markdown
2021-01-09 15:33:49 +01:00
![Desktop View](/assets/img/sample/mockup.png){: .left}
2020-12-09 23:39:03 +01:00
```
- **Float to the right**
```markdown
2021-01-09 15:33:49 +01:00
![Desktop View](/assets/img/sample/mockup.png){: .right}
2020-12-09 23:39:03 +01:00
```
2021-01-09 15:33:49 +01:00
**Limitation**: Once you specify the position of an image, it is forbidden to add the image caption.
### CDN URL
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` file:
```yaml
img_cdn: https://cdn.com
```
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 `/`.
For instance, when using images:
```markdown
![The flower](/path/to/flower.png)
```
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">
```
2020-12-09 23:39:03 +01:00
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
---
```
2019-09-30 14:38:58 +02:00
## Code Block
Markdown symbols ```` ``` ```` can easily create a code block as following examples.
2019-09-30 14:38:58 +02:00
```
This is a common code snippet, without syntax highlight and line number.
```
## Specific Language
Using ```` ```language ```` you will get code snippets with line numbers and syntax highlight.
2019-09-30 14:38:58 +02:00
> **Note**: The Jekyll style `{% raw %}{%{% endraw %} highlight LANGUAGE {% raw %}%}{% endraw %}` or `{% raw %}{%{% endraw %} highlight LANGUAGE linenos {% raw %}%}{% endraw %}` are not allowed to be used in this theme !
```yaml
# Yaml code snippet
items:
- part_no: A4786
descrip: Water Bucket (Filled)
price: 1.47
quantity: 4
```
2020-10-06 14:50:00 +02:00
### Liquid Codes
2019-09-30 14:38:58 +02:00
If you want to display the **Liquid** snippet, surround the liquid code with `{% raw %}{%{% endraw %} raw {%raw%}%}{%endraw%}` and `{% raw %}{%{% endraw %} endraw {%raw%}%}{%endraw%}` .
{% raw %}
```liquid
{% if product.title contains 'Pack' %}
This product's title contains the word Pack.
{% endif %}
```
{% endraw %}
## 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/).