The articles I used to build my blog on github pages
Most used commands
jekyll serve --watch
bundle install
jekyll serve --watch --incremental
bundle exec jekyll serve --watch --incremental
bundle update
bundle exec jekyll serve
bundle clean --force
Most used shortcuts
Create a link that opens on another tab
[Title of the link](link){:target="_blank"}
Localhost link
Create links between posts
[Name of Link]({{ site.baseurl}} {% post_url 2015-01-09-Working-with-SQLite-on-DotNet-3 %}){:target="_blank"}
Create links between pages
[About page]({{ site.baseurl }}{% link about/index.md %}){:target="_blank"}
Highlight code blocks
{% highlight csharp %}
// put your code here...
{% endhighlight %}
Display the text as it is by escaping all
{% raw %}
// the text that you want to display as it is goes here...
{% endraw %}
For more information, you can take a look at this markdown file.
Insert an image
