Markdown Tutorial - Layout
Code Blocks
Here is a literal ` backtick. And here is some text.
markdown:
Here is a literal `` ` `` backtick. And here is `some` text.
GitHub Pages Tutorial
Create a repository
Head over to GitHub and create a new repository named username.github.io, where username is your username(or organization name) on GitHub.

If the first part of the repository doesn’t exactly match your username, it won’t work, so make sure to get it right.
Jekyll installation
Requirements
Before you start make sure your system has the following:
- Ruby version 2.2.5 or above, including all development header( ruby installation can be checked by running
ruby -v) - RubyGems(which you can check by running
gem -v) - GCC and Make(in case your system doesn’t have them installed, which you can check by running
gcc -v,g++ -vandmake -vin your system’s command line interface)