Blog Established.

Blog Established Today

Github Pages

  • Create a new repo.
  • Initial Master commit.
  • In Settings, go to GitHub Pages, select master branch in Source.
  • All done.

Next Jekyll Template with Mathjax Support

  • In _config.yml, find mathjax, set enable: true
  • In _includes\_layout.html, modify HEAD to be:
1
2
3
4
5
6
7
8
9
10
11
12
13
<head>
  <script type="text/x-mathjax-config">
    MathJax.Hub.Config({
      tex2jax: {
        skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
        inlineMath: [['$','$']]
      }
    });
  </script>
  <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
 
 ...

  • All done.