This word is italicized, underscores also work
This word is bold and markup can be nested.
Call the function_name
function.
Look at this output:
$ ls /usr/
bin lib libexec
Look at this code:
def fib(n):
if n <= 2:
return 1
else:
return fib(n-1) + fib(n-2)
Lincoln said:
Four-score and seven years ago, our fathers brought forth on this continent a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.
- First ordered list item
- Another item
- Actual numbers don't matter
- First unordered list item
- Another item
- And another item
- First outer
- First inner
- Second inner
- Second outer
- Third outer
URLs make links: http://python.org.
Inline link for brevity.
Indirect link for readability.
Markdown has no specialized syntax for notes.
Extended Markdown supports footnotes1.
Markdown has no specialized syntax for warnings.
Footnotes
-
The footnote will mostly be displayed in the bottom no matter where you define it, hence the name. ↩