title | subtitle | author | sections | date | <!-- header-includes | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Title Here |
Some Subtitle |
|
|
08.13.2018 |
|
This is your starting page.
Here, you can introduce your readers to the purpose of the document, as well as provide any useful information pertinent to its goals.
Below are some HTML structures you will no doubt find useful.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Italics and bold are indicated with asterisks.
To strikeout text use double tildas.
Superscripts use carats, like so: 2^nd^.
Subscripts use single tildas, like so: H2O.
Spaces inside subscripts and superscripts must be escaped,
e.g., Hthis\ is\ a\ long\ subscript.
Inline code goes between backticks: echo 'hello'
.
$ # Lorem ipsum dolor
$ echo Lorem ipsum dolor
$ # consectetur adipiscing elit
$ rm -f consectetur
Weblink: http://example.com
Weblink with Text: Example
Email link: [email protected]
Inline Link: inline link
This is a link to a footer 1
Inline notes are like this.^[Note that inline notes cannot contain multiple paragraphs.] Reference notes are like this.[^id]
[^id]: Reference notes can contain multiple paragraphs.
Subsequent paragraphs must be indented.
Closing #s are optional. Blank line required before and after each header.
- example
- example
A) example B) example
Items may be marked by '*', '+', or '-'.
- example
- example
- example
Lists may be nested in the usual way:
- example
- example
- example
Term 1 ~ Definition 1
Term 2 ~ Definition 2a ~ Definition 2b
Term 1 : Definition 1
Term 2 : Definition 2
Second paragraph of definition 2
Third paragraph of definition 2
blockquote
nested blockquote
Blank lines required before and after blockquotes.
Right Left Center Default
12 12 12 12
123 123 123 123
1 1 1 1
Table: Demonstration of simple table syntax (with css applied, see build.sh)
(For more complex tables, see the pandoc documentation.)
Begin with three or more tildes; end with at least as many tildes:
{code here}
Optionally, you can specify the language of the code block:
qsort [] = []
qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++
qsort (filter (>= x) xs)
tmpl_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'templates')
app = Flask(__name__, template_folder=tmpl_dir)
<head></head>
<body>
This is HTML
</body>
body {
font-family: "PT Sans";
}
$ echo this is bash
$ # execute the following line only if dist/ exists and there's stuff inside
$ rm dist/*
$ # the following command builds the source distribution
$ python setup.py sdist
$ # the following command uploads the package to PyPI!!!!!!!!
$ twine upload dist/*
$ # you will be prompted for username & password to PyPI
$ # remove stuff under dist/* to keep it clean for updates.
$ rm dist/*
3 or more dashes or asterisks on a line (space between okay)
!include(includes/section1.md) !include(includes/section2.md) !include(includes/section3.md) !include(includes/section4.md)
Footnotes
-
This is some footer with two links http://www.google.com and http://www.wikipedia.com. ↩