| HTML Formatting Guide: |
| Link to a wiki page |
Select text and right click. Then select "Insert/edit link."
Type the name of the wiki page in "Link URL" textbox. |
| Link to an attachment |
Select text and right click. Then select "Insert/edit link."
Type the name of the attachment with the file extension in "Link URL" textbox. |
| HTML Source Formatting Guide: |
| Link to a wiki page |
<a href="pageName">My Page</a> |
| Link to an attachment |
<a href="attachment.doc">My Document</a> |
| Show an attached image |
<img src="imageName.jpg"> |
| Wiki Formatting Guide (more help): |
| link to page in this wiki |
[pagename] or [Display text|pagename] |
| external link |
http://www.google.com or {link:Display text|http://www.google.com} |
| picture |
[attach.jpg] or {image:http://www.website.com/somepic.jpg} |
| bold |
**like this** |
| italics |
~~like this~~ |
| bulleted list |
- list item |
| numbered List |
1. list item |
| line break (<br>) |
\\ |
| Plain Text Formatting Guide: |
| In plain text format, web addresses (http://www.labkey.com) will be automatically converted
into active hyperlinks when the page is shown, but all other text will appear as typed. |
| Markdown Formatting Guide (More Help) |
| Headers |
# H1 | ## H2 | ### H3 |
| Bold text |
**use double asterisks** |
| Italics |
_use underlines_ |
| Links |
[I'm an inline-style link with title](https://www.google.com "Google's Homepage") |
| Images |
 |
| Code |
``` js
var foo = function (bar) {
return bar++;
};
``` |
| Lists |
Create a list by starting a line with '+', '-', or '*' |
|
|