.H 1 "Markdown: Basics" .H 2 "Getting the Gist of Markdown's Formatting Syntax" .P This page offers a brief overview of what it's like to use Markdown. The syntax page (/projects/markdown/syntax) provides complete, detailed documentation for every feature, but Markdown should be very easy to pick up simply by looking at a few examples of it in action. The examples on this page are written in a before/after style, showing example syntax and the HTML output produced by Markdown. .P It's also helpful to simply try Markdown out; the Dingus (/projects/markdown/dingus) is a web application that allows you type your own Markdown-formatted text and translate it to XHTML. .P \fBNote:\fR This document is itself written using Markdown; you can see the source for it by adding '\[char46]text' to the URL (/projects/markdown/basics.text)\[char46] .H 2 "Paragraphs, Headers, Blockquotes" .P A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line -- a line containing nothing spaces or tabs is considered blank.) Normal paragraphs should not be intended with spaces or tabs. .P Markdown offers two styles of headers: \fISetext\fR and \fIatx\fR\[char46] Setext-style headers for \fC
Now is the time for all good men to come to the aid of their country. This is just a regular paragraph.
The quick brown fox jumped over the lazy dog's back.
.VERBOFF .H 3 "Phrase Emphasis" .P Markdown uses asterisks and underscores to indicate spans of emphasis. .P Markdown: .VERBON 2 Some of these words *are emphasized*. Some of these words _are emphasized also_. Use two asterisks for **strong emphasis**. Or, if you prefer, __use two underscores instead__. .VERBOFF .P Output: .VERBON 2This is a blockquote.
This is the second paragraph in the blockquote.
This is an H2 in a blockquote
Some of these words are emphasized. Some of these words are emphasized also.
Use two asterisks for strong emphasis. Or, if you prefer, use two underscores instead.
.VERBOFF .H 2 "Lists" .P Unordered (bulleted) lists use asterisks, pluses, and hyphens (\fC*\fR, \fC+\fR, and \fC-\fR) as list markers. These three markers are interchangable; this: .VERBON 2 * Candy. * Gum. * Booze. .VERBOFF .P this: .VERBON 2 + Candy. + Gum. + Booze. .VERBOFF .P and this: .VERBON 2 - Candy. - Gum. - Booze. .VERBOFF .P all produce the same output: .VERBON 2\fR tags for the list item text. You can create multi-paragraph list items by indenting the paragraphs by 4 spaces or 1 tab: .VERBON 2 * A list item. With multiple paragraphs. * Another item in the list. .VERBOFF .P Output: .VERBON 2
A list item.
With multiple paragraphs.
Another item in the list.
This is an example link.
.VERBOFF .P Optionally, you may include a title attribute in the parentheses: .VERBON 2 This is an [example link](http://example.com/ "With a Title"). .VERBOFF .P Output: .VERBON 2This is an example link.
.VERBOFF .P Reference-style links allow you to refer to your links by names, which you define elsewhere in your document: .VERBON 2 I get 10 times more traffic from [Google][1] than from [Yahoo][2] or [MSN][3]. [1]: http://google.com/ "Google" [2]: http://search.yahoo.com/ "Yahoo Search" [3]: http://search.msn.com/ "MSN Search" .VERBOFF .P Output: .VERBON 2I get 10 times more traffic from Google than from Yahoo or MSN.
.VERBOFF .P The title attribute is optional. Link names may contain letters, numbers and spaces, but are \fInot\fR case sensitive: .VERBON 2 I start my morning with a cup of coffee and [The New York Times][NY Times]. [ny times]: http://www.nytimes.com/ .VERBOFF .P Output: .VERBON 2I start my morning with a cup of coffee and The New York Times.
.VERBOFF .H 3 "Images" .P Image syntax is very much like link syntax. .P Inline (titles are optional): .VERBON 2 ![alt text](/path/to/img.jpg "Title") .VERBOFF .P Reference-style: .VERBON 2 ![alt text][id] [id]: /path/to/img.jpg "Title" .VERBOFF .P Both of the above examples produce the same output: .VERBON 2 .VERBOFF .H 3 "Code" .P In a regular paragraph, you can create code span by wrapping text in backtick quotes. Any ampersands (\fC&\fR) and angle brackets (\fC<\fR or \fC>\fR) will automatically be translated into HTML entities. This makes it easy to use Markdown to write about HTML example code: .VERBON 2 I strongly recommend against using any `