Artifact c0c2e98daa14f576d5e5d917f2fe7b5b95ccb5fe:
- File src/markdown.md — part of check-in [5fcc1d5c59] at 2016-05-29 22:59:32 on branch trunk — Improved Markdown documentation. (user: drh size: 1632) [more...]
Markdown Overview
Paragraphs
Paragraphs are divided by blank lines.
Headings
# Top-level Heading Alternative Top Level Heading ============================= ## Second-level Heading Alternative 2nd Level Heading -----------------------------
Links
- [display text](URL)
- [display text](URL "Title")
- <URL>
- [display text][label]
With link format 4 ("reference links") the label must be resolved by including a line of the form [label]: URL or [label]: URL "Title" somewhere else in the document.
Fonts
- *italic*
- _italic_
- **bold**
- __bold__
`code`Note that the `...` construct disables HTML markup, so one can write, for example, `
<html>` to yield<html>.
Lists
* bullet item + bullet item - bullet item 1. numbered item
Block Quotes
Begin each line of a paragraph with ">" to block quote that paragraph.
> This paragraph is indented > > Double-indented paragraph
Miscellaneous
- In-line images using 
- Use HTML for complex formatting issues.
- Escape special characters (ex: "[", "(", "*") using backslash (ex: "\[", "\(", "\*").
- See daringfireball.net for additional information.