Skip to content

Latest commit

 

History

History
93 lines (69 loc) · 1.92 KB

markdown_test.md

File metadata and controls

93 lines (69 loc) · 1.92 KB

Markdown test

Paragraphs

So you can have a bunch of text that's just ordinary and boring. If you try to write in a new line that usually doesn't work but you can follow it with a \ to make it wrap to a new line.
Just like this.

Or you can just leave an empty line in between if you want it to leave extra breathing room.

Headings

Large heading

Smaller heading

Even smaller heading

Really tiny heading!

Can we make it smaller?
Yes we can!

Styles

Some bold text followed by some more bold text but then some italic text appears and even more italic text.

Will strikethrough follow their lead though?

You can also nest italic with bold

You can even just have everything be really strong and dancy

Quotes

If you think you can do a thing or think you can't do a thing, you're right.
—Henry Ford

Code

struct Magic<T> {
  value: T
}
fn cool() -> Magic<T> {
  return Magic {
    value: 100
  };
}

Links

A cool website

Images

Circle rendered in Bevy

Lists

  • This is some cool list
    1. It can even contain other lists inside of it
      • And those lists can contain OTHER LISTS!
        1. Listception
        2. Listception
  • Yeah I agree
    • Testing
  • It's one of the coolest lists every written!
  1. This is a normal numbered list though
  2. So it's a bit less interesting
    1. Except when it contains more lists again!
  3. Because no listception
    1. Or not!

Task lists

  • NOT Checked
  • Checked
  • Some more
  • Or some less

Footnotes

This is some random text1 that talks about nothing at all2.

Footnotes

  1. My reference.

  2. This was supposed to work.