bold: **bold**
bold
italic: *italic*
italic
italic: _italic_
italic
In a markdown file on GitHub, to see how it was formatted, click on "raw" on upper right corner.
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
How to add line breaks:
- can enclose text in triple back quotes
- add two spaces to end of line
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 |