70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
> This paragraph is indented
> >
> > Double-indented paragraph
> Begin each line with at least four spaces or one tab to produce a verbatim
> code block.
## Miscellaneous ##
> * In-line images are made using **\!\[alt-text\]\(image-URL\)**.
> * Use HTML for advanced formatting such as tables and forms.
> * **\<!--** HTML-style comments **-->** are supported.
> * Escape special characters (ex: "\[", "\(", "\*")
> using backslash (ex: "\\\[", "\\\(", "\\\*").
> * A line consisting of **---**, **\*\*\***, or **\_\_\_** is a horizontal
> rule. Spaces and extra **-**/**\***/**_** are allowed.
> * See [daringfireball.net][] for additional information.
> * See this page's [Markdown source](/md_rules?txt=1) for complex examples.
## Special Features For Fossil ##
> * In hyperlinks, if the URL begins with "/" then the root of the Fossil
> repository is prepended. This allows for repository-relative hyperlinks.
> * For documents that begin with a top-level heading (ex: "# heading #"), the
> heading is omitted from the body of the document and becomes the document
> title displayed at the top of the Fossil page.
[daringfireball.net]: http://daringfireball.net/projects/markdown/syntax
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
|
|
|
|
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
> This paragraph is indented
> >
> > Double-indented paragraph
> Begin each line with at least four spaces or one tab to produce a verbatim
> code block.
## Tables ##
>
| Header 1 | Header 2 | Header 3 |
--------------------------------------------
|:Left-aligned |:Centered :| Right-aligned:|
| | ← Blank → | |
> The first row is a header if followed by a horizontal rule or a blank line.
> Placing **:** at the left, both, or right sides of a cell gives left-aligned,
> centered, or right-aligned text, respectively. By default, header cells are
> centered, and body cells are left-aligned.
> The leftmost **\|** is required if the first column contains at least one
> blank cell. The rightmost **\|** is optional.
## Miscellaneous ##
> * In-line images are made using **\!\[alt-text\]\(image-URL\)**.
> * Use HTML for advanced formatting such as forms.
> * **\<!--** HTML-style comments **-->** are supported.
> * Escape special characters (ex: **\[** **\(** **\|** **\***)
> using backslash (ex: **\\\[** **\\\(** **\\\|** **\\\***).
> * A line consisting of **---**, **\*\*\***, or **\_\_\_** is a horizontal
> rule. Spaces and extra **-**/**\***/**_** are allowed.
> * See [daringfireball.net][] for additional information.
> * See this page's [Markdown source](/md_rules?txt=1) for complex examples.
## Special Features For Fossil ##
> * In hyperlinks, if the URL begins with **/** then the root of the Fossil
> repository is prepended. This allows for repository-relative hyperlinks.
> * For documents that begin with a top-level heading (ex: **# heading #**),
> the heading is omitted from the body of the document and becomes the
> document title displayed at the top of the Fossil page.
[daringfireball.net]: http://daringfireball.net/projects/markdown/syntax
|