Editing Guide
Markdown
This section provides some brief examples of Markdown markup syntax. For a more complete demonstration, see the official documentation.
Headers
A length of hash marks preceding a line of text forms a header.
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Block Quotes
A paragraph preceded by a greater-than symbol (>) will be converted to a block quote. Multiple paragraphs will be joined as a single block quote.
> Quoted text
Quoted text
Lists
Use *, +, or - to denote unordered, and a digit followed by a period to denote ordered lists.
* Red
* Green
* Blue
1. First
2. Second
3. Third
Unordered list:
- Red
- Green
- Blue
Ordered list:
- First
- Second
- Third
Definition lists are created by following each term with one or more definition lines beginning with a colon (:).
Term A
: Definition 1
: Definition 2
Term B
: Definition 1
: Definition 2
- Term A
- Definition 1
- Definition 2
- Term B
- Definition 1
- Definition 2
External Links and Images
[Google](http://google.com/)
<http://www.google.com/>


[](http://www.youtube.com/watch?v=M9R1ODvReQE)
Inline Markup
* *emphasis* or _emphasis_
* **strong** or __strong__
* `code`
- emphasis or emphasis
- strong or strong
code
Command Line Blocks
Encapsulate CLI output in <pre> blocks. Use <strong> to indicate input text, <ins> for comments, and <em> (emphasis) to highlight selections.
! Look for the version number Router# show version Cisco IOS Software, 7200 Software (C7200-ADVENTERPRISEK9-M), Version 12.4(22)T, RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2008 by Cisco Systems, Inc. Compiled Fri 10-Oct-08 10:10 by prod_rel_team
Wiki Links
|
A simple link to an existing wiki article. [[Editing Guide]] |
Editing Guide |
|
A link to a missing article. The hyperlink points to the article creation form. [[Missing Article]] |
Missing Article |
|
Link to a wiki article with a custom title. [[Editing Guide|Hone your markup skills]] |
Hone your markup skills |
|
Link prefixed with a namespace (in this case, an image). [[Image:Test Image]] |
Test image |
|
An embedded image (by default, images are not linked). ![[Image:Test Image]] |
![]() |
|
An embedded image linked to itself. ![[Test Image|]] |
![]() |
|
An image linked to a wiki article. Namespaces work here too. ![[Test Image|Editing Guide]] |
![]() |
|
A missing embedded image (try to avoid this). ![[Image:Missing Image]] |
Image missing |
Namespaces
Internal
- Article (default): Wiki article
- Armory: Armory tool
- Attachment: File attachment (valid only for objects which have attachments)
- Blog: Blog entry
- Capture: Packet capture
- Category: Wiki category
- Image: Wiki image
- Post: Forum post (specify by ID)
- Template: Wiki template
- Thread: Forum thread (specify by ID)
- User: Member profile
External
- Wikipedia: Wikipedia article (English)
- RFC: IETF Request For Comment (HTML version)
Permitted HTML
The following tags are allowed:
a, abbr, acronym, b, big, blockquote, br, caption, cite, code, col, colgroup, dd,
del, dfn, div, dl, dt, em, embed, h1, h2, h3, h4, h5, h6, hr, i, img, ins, li,
menu, object, ol, p, param, pre, q, s, select, small, span, strike, strong, sub,
sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul
HTML comments are also permitted.

