Published on

Examples

Authors
  • avatar
    Name
    Jake
    Twitter

Images

Typora

Note the typora-root-url in the metadata

---
title: Proof Examples
typora-root-url: ../../public
---

Next.js image tag

Uses fixed width and height

<section className="flex flex-col justify-center items-center">
  <image
    className="mx-auto"
    src="/static/images/my-tree.jpg"
    alt="Look up"
    width="300"
    height="400"
  />
</section>
Look up

Audio Tag

For Dropbox sources, replace www. with dl. in the url.

<audio controls>
    <source src="https://dl.dropbox.com/s/yhoi8geb1wx2t89/Ye%20Vagabonds%20-%20Go%20away%20and%20combe%20back%20hither.mp3" type="audio/mp3" autoPlay></source>
    <p>Your user agent does not support the HTML5 audio element</p>
</audio>

Twitter Embed

Simply copy the embed code from Twitter

nb caution. The parser (against HTML5 specification) seems to want single tags to be closed with a /> as with the <br> tags above.