How to use Hexo and deploy to GitHub Pages
1. Install Hexo
$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
For github, like for displaying a mysql `table_name`, in regular text use \` (backslash backtick) - this really works. | |
For showing backticks inside inline codeblocks `table_name` use double backticks with | |
extra spaces `` `table_name` `` around the inner single backticks. | |
To show the previous example explanation in an inline codeblock: `` `table_name` ``, | |
surround the whole in three backticks with extra spaces, | |
e.g. ``` `` `table_name` `` ``` | |
Ref : https://meta.stackexchange.com/questions/82718/how-do-i-escape-a-backtick-in-markdown |