Markdown Cheat Sheet

May 19, 2018 1 min read
  • Images
    • ![Alt Text](images/thing.jpg)
  • Links
    • <https://link.com>
    • [Text](https://link.com "Alt text")
  • Linked Images
    • [![Alt Text](images/thing.jpg)](https://link.com)
  • Line breaks: &nbsp;
  • Styles

    • _italics_
    • **Bold**
    • **_Bold and Italic_**
    • ~~Strike-through~~
    • `code`
    •     * My List Item
      
              ```csharp
              int thing = 0;
              float boop = 2.4;
              ```
      
    • <sup>Superscript</sup>

  • Hugo

    • <video src="{{< itl-url >}}myfolder/myvideo.webm" style="max-width:100%;height:auto;" autoplay loop controls></video>
    • {{< youtube abcdefg >}}
    • {{< youtube id="abcdefg?start=60" title="Title for Accessibility" >}}
      • Start video at 60 seconds
    • {{< tweet 877500564405444608 >}}
    • {{< gist spf13 7896402 >}}
    • {{< img-tl "blog/2018/holiday/day-02/thing.jpg" >}}
      • For i.tehlemon.com
    • ## My Heading {#HeadingReference}
      • Link to reference
        • [text](/blog/2019/jp19-00#HeadingReference)
        • [text](#HeadingReference)