How to GitHub Pages

Table of Contents


Some References

  1. Basics of liquid: link

Others

  1. Reference: http://jmcglone.com/guides/github-pages/

  2. Enable latex support for maths: link

  3. Improve code hilighting : link

    {/% highlight ruby linenos %}
    {/% endhighlight %}
    
  4. Writing project from scratch: link

  5. Controling link in Jekyll: link

  6. Build blog site with Jekyll: link

  7. Add figure and resize it:

    Here is an inline ![smiley](\{\{ site.url }}/assets/smiley.png){:height="36px" width="36px"}.

    And here is a referenced ![smile]

    [smile]: \{\{ site.url }}/assets/smile.png {: height="36px" width="36px"}

    Ref:

    1. http://sgeos.github.io/github/jekyll/2016/08/30/adding_images_and_downloads_to_a_github_pages_jekyll_blog.html

    2. https://stackoverflow.com/questions/14675913/changing-image-size-in-markdown

  8. To add table of content in github pages: Add following two lines in the blog page in which you need table of content :

    * Do not remove this line (it will not be displayed)
    {:toc}
    
  9. To image resize use

    <img src="Link" width="200" height="200" />
    
  10. How to link post, pages or any internal links; Reference: stackoverflow, Jekyll documentation

  11. https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll




Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • GitLab workflow for CMS-AN
  • Vi-Editor
  • Git CheatSheet
  • Latex Commands
  • XDAQ Basics
  • Mac Settings
  • sed command
  • Condor Jobs
  • awk command
  • python
  • Sphinx: Python code documentation tool