You can write a post in markdown.
---
layout: post # Specify the template file to be used. The template file name in the "_layout" directory determines the variable name
title: title # The title of the article
date: date # Override the date in the article name
category: blog # The category of the article
desc: description
published: true # default true After setting "false", the article will not be displayed
---- Location: Place your article in the
_postsdirectory (make sure it's_posts, notposts). - File naming convention: Use the format
YYYY-MM-DD-title.mdfor your file name, such as2023-10-01-my-first-post.md. - Then push the new blog.
Append a baseurl to the path.
- Markdown

- Html
<img src="{{ site.baseurl }}/assets/images/myimage.jpg" alt="myimage" width="500" height="300">
- Markdown
[access Google](https://www.google.com)
- Html
<a href="https://www.google.com" target="_blank">access Google</a>
- Liquid
[read more]({{ site.baseurl }}{% post_url 2023-01-01-my-post %})
[read more]({{ site.baseurl }}/about/)
- Jekyll {% link File_Path %}
{% link _posts/2023-01-01-my-post.md %}