Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.25 KB

HowdoIwritemyownMarkdown.md

File metadata and controls

47 lines (31 loc) · 1.25 KB

How do I write my own Markdown?

Here are some basic examples to get you started. Double-click on this cell to see how each was made. There are many markdown cheatsheets available on the web.

Headers

Markdown Syntax Rendered Result
# header title Largest header size
## header title Second largest header
### header title Third largest header

Emphasis

Use asterisks around texts to add emphasis, also known as italics You can also use underscores A strike-thru effect is created with two tildes ~~

Lists

A list of ordered items:

  1. List item 1
  2. List item 2

Unordered items:

  • List item
  • Also a list item
  • A list item
  • Another list item
  • Also an item
  • The last item

Links

This is a link to My Website.

Images

Description of the image for accessibility(The Great Wave of Kanagawa)

The

Horizontal Rule

Create a horizontal rule with three hyphens, asterisks, or underscores.