In a markdown file on GitHub, to see how it was formatted, click on "raw" on upper right corner.
1. Text Formatting
2. Headers
3. Line Breaks
4. Links
5. Inline Code
6. Images
7. Emojis
8. Tables
bold: **bold**
bold
italic: *italic*
italic
italic: _italic_
italic
strikethrough: ~~strike thru~~
cross out
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
How to add line breaks:
- can enclose text in triple back quotes
- add two spaces to end of line
[Google website](https://www.google.com/)
results in:
Google website
`text`
text
Format: 

typing this:
:smiley:
results in:
😃
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |
Fruit Types I
- apple
- banana
- pear
Fruit Types I
- apple
- banana
- pear
Fruit Types II
- apple
- banana
- pear
Fruit Types III
- apple
- banana
- pear
Produce
- fruit
- apple
- banana
- orange
- vegetable
- carrot
- celery
- onion
- @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
Block code that is non-specific:
print "hello world!"
print "hello moon"
Block code that is python-specific:
print "hello world!"
print "hello moon"
Block code that is non-specific:
$ git status
$ git remote -v
Block code that is bash-specific:
$ git status
$ git remote -v
$ ps awx | grep mongo
Block code that is non-specific:
SELECT * FROM Customers WHERE Country='Sweden';
Block code that is sql-specific:
SELECT * FROM Customers WHERE Country='Sweden';
Yes, this works for scores of other languages: Syntax highlighting in markdown
<h1 > test </h1>
<p> xxxxxxxxx
xxxxxxxxx</p>
<table>
<tr>
<td>Foo</td>
</tr>
<tr>
<td>Foo</td>
</tr>
</table>
xxxxxxxxx xxxxxxxxx
Foo | Foo | Foo |
Foo |
indent at one level
indent at two levels
text, test, test, test, test
print "hello world!"
print "hello" world
print "hello world!"
<p>printing a paragraph in HTML! </p>