Posts How to Contribute a new post
Post
Cancel

How to Contribute a new post

This blog is powered by Jekyll, which is a simple static site generator that generates webpages from markdown files. This post explains how to write and contribute a new post. Please visit Jekyll Docs to know more and maybe create a blog for yourself.

This blog uses jekyll-theme-chirpy created by cotes2020

To contribute a new post either

  • send the post as .md fiels under _posts/ as a git patch or
  • fork this repo, add your post and send a pull request.

Please refer this post and markdownguide to learn more about markdown syntax

Naming and Path

To create a new post, 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. Please refer files that alrea

Front Matter

Basically, you need to fill the Front Matter as below at the top of the post:

1
2
3
4
5
6
---
title: TITLE
date: YYYY-MM-DD HH:MM:SS +/-TTTT
categories: [TOP_CATEGORIE, SUB_CATEGORIE]
tags: [TAG]     # TAG names should always be lowercase
---

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.

Timezone of date

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. +0530 in case of India.

Categories and Tags

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:

1
2
categories: [Animal, Insect]
tags: [bee]

Table of Contents

By default, the Table of Contents (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:

1
2
3
---
toc: false
---

Comments

Similar to TOC, the Disqus 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:

1
2
3
---
comments: false
---

Mathematics

For website performance reasons, the mathematical feature won’t be loaded by default. But it can be enabled by:

1
2
3
---
math: true
---

Mermaid

Mermaid is a great diagrams generation tool. To enable it on your post, add the following to the YAML block:

1
2
3
---
mermaid: true
---

Then you can use it like other markdown language: surround the graph code with ```mermaid and ```.

Images

When contributing a post, place related images at assets/posts/<name of post>/ directory

Preview image

If you want to add an image to the top of the post contents, specify the url and alt attribute for the image:

1
2
3
4
5
---
image:
  src: /assets/posts/text-and-typography/cover.png
  alt: image alternative text
---

Image caption

Add italics to the next line of an image,then it will become the caption and appear at the bottom of the image:

1
2
![img-description](/path/to/image)
_Image Caption_

Image size

You can specify the width (and height) of a image with width:

1
![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:

    1
    
    ![Desktop View](/assets/img/sample/mockup.png){: .normal}
    
  • Float to the left

    1
    
    ![Desktop View](/assets/img/sample/mockup.png){: .left}
    
  • Float to the right

    1
    
    ![Desktop View](/assets/img/sample/mockup.png){: .right}
    

Limitation: Once you specify the position of an image, it is forbidden to add the image caption.

Image shadow

The screenshots of the program window can be considered to show the shadow effect, and the shadow will be visible in the light mode:

1
![Desktop View](/assets/img/sample/mockup.png){: .shadow}

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:

1
2
3
---
pin: true
---

Code Block

Markdown symbols ``` can easily create a code block as following examples.

1
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.

Note: The Jekyll style {% highlight LANGUAGE %} or {% highlight LANGUAGE linenos %} are not allowed to be used in this theme !

1
2
3
4
5
6
# Yaml code snippet
items:
    - part_no:   A4786
      descrip:   Water Bucket (Filled)
      price:     1.47
      quantity:  4

Liquid Codes

If you want to display the Liquid snippet, surround the liquid code with {% raw %} and {% endraw %} .

1
2
3
{% if product.title contains 'Pack' %}
  This product's title contains the word Pack.
{% endif %}

Learn More

For more knowledge about Jekyll posts, visit the Jekyll Docs: Posts.

This post is licensed under CC BY 4.0 by the author.