How to post The Jekyll page via Markdown

1. Make a .md file in …/_posts/

/_posts folder is for holding your Jekyll posts.

and I recommend you to use the editor(Atom, VSCode, Editplus) for typing this.

I commonly use VSCode. if you want, you can download VSCode in here

then please open your Jekyll Project folder in File > Open Folder

and make a .md file in /_posts folder.

you should keep the shape of your file name like below when you making Jekyll posts.

1
2
3
date-title.md

example) 2019-04-25-jekyll-test.md

then you can check your updates at locally

2. Let’s fill the content in your post

please type what you want in your post as shown below.

3. Push your updates to Github Repository.

1
2
3
git add .
git commit -m "anything"
git push -u origin master

and also you can check your updates at your github pages.

Share