Jekyll Cheatsheet
A list of useful snippets I have been using.
Inserting images centered
![png](/assets/images/toothbrush_algo/yt_vid.PNG){: .align-center }
Inserting images with captions (centered)
There are other ways, but this is the most convenient. Note that <center>
is deprecated. But as long as it works, i’ll keep using this.
Example taken from Revising Recursion post.
<center>
<img src="/assets/images/revising_recursion/xkcd_recursion.png" alt="my alt text"/>
</center>
<center>This is an image</center>
Hyperlink
But recently I came across this [the name of the link](google.com) ...