Precis Demo
It’s very easy to make some words bold and other words italic with Markdown. You can even link to Google!.
This is an <h1> tag
This is an <h2> tag
This is an <h6> tag
This text will be italic This will also be italic
This text will be bold This will also be bold
You can combine them
- Item 1
- Item 2
- Item 2a
- Item 2b
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
As Kanye West said:
We’re living the future so the present is our past.
I think you should use an <addr>
element here instead.
And this is a horizontal rule.
Code
There are many different ways to style code with GitHub’s markdown. If you have inline code blocks, wrap them in backticks: var example = true
. You can also add a block of code:
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
Task Lists
- @mentions, #refs, links, formatting, and
tagssupported - list syntax required (any unordered or ordered list supported)
- this is a complete item
- this is an incomplete item
Tables
You can create tables by assembling a list of words and dividing them with hyphens -
(for the first row), and then separating each column with a pipe |:
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |
You can see the Markdown source of this note too.