https://kakeru.io/ (Unpublished)
Simply put, it is a personal blog. It is an academic recording device for daily life, self-improvement, and notes.
- I want to get used to reading.
- I want to get used to writing.
- I've always wanted to reflect on my daily input and output.
-
Create a directory for your blog in any location in your project.
readonly BLOG_DIR_NAME=./blog/articles/`date '+%Y/%m/%d/'`/01 mkdirs ${BLOG_DIR_NAME}
-
Create a category table under the blog folder created in step one.
- Open the file and start editing.
vi ./blog/categories
-
In csv format, using the following rules.
- id = A key that uniquely identifies a category, and duplication is prohibited.
- name = Category Name.
id name id1 name1 id2 name2
-
Create blog information.
- Copy the template to the folder where you will write the article.
cp ./blog/template/info.json ${BLOG_DIR_NAME}
- In json format, using the following rules.
{ "title": "Article Title", "Author": "Author Name", "Category": "categoryId", "Tags": [ "tag1", "tag2", "tag3" ], "publish": false }
- Copy the template to the folder where you will write the article.
-
Finally, create
article.md
and write the article in Markdown format and you are done.vi ${BLOG_DIR_NAME}/article.md
- GitHub Actions
- Frontend Frameworks