Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.63 KB

demo-note.md

File metadata and controls

72 lines (50 loc) · 1.63 KB
date tags
2019-06-05
documentation demo

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

tag

This is an

tag

This is an
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
  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. 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 tags supported
  • 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.