How to post placeholder page
A quick reminder of posting a blog in chirpy
Posting in the blog
when posting in the chirpy blogging you need to remember the following-
- First the naming of the files must be in the YYYY-MM-DD-something.md format
- Then the file structure each file have the following in format defined by the official chirpy guide
1 2 3 4 5 6 7 8
--- title: TITLE date: YYYY-MM-DD HH:MM:SS +/-TTTT categories: [TOP_CATEGORY, SUB_CATEGORY] tags: [TAG] # TAG names should always be lowercase description : "description" math: true ---
- Image connecting is done using the standard template

- URL linking is done quite easy as the URL is the only things that need to work using

- file connecting is slightly different as we need to put the file in assets directory and link to that using

- URL linking is done quite easy as the URL is the only things that need to work using
- The same way we put the file in the image we can also make downloadable links as well using the standard markdown URL linking
[dowloadable file](/assets/pdf/3-1-theory-exam.pdf)
dowloadable file - We can statically link youtube url in as well using
{
% include embed/youtube.html id='dQw4w9WgXcQ' %}
in a separate line. Rickroll for example.
- equation rendering can be done inline $e = mc^2$ using
$e = mc^2$
or separate line using$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$
There are more things but these are the only few things that I need to use in almost every posts so I may not going to add anything in this page unless I need to use this.
This post is licensed under CC BY 4.0 by the author.