NEPHO Technology
Markdown
All editable text on PHINE websites can have formatting added using Markdown. This is a simple language letting you add headings, bold, italics, links and other features using a simple syntax. You don't have to use it - if you just type in plain text, it will come out fine; and if you prefer to use HTML, you can use that instead.
Below is a quick guide to the parts of Markdown you'll need most often. If there's something you can't find here, you can look at the complete Markdown syntax
Text Area Formatting
Headers
| Markdown Input | Output |
|---|---|
|
Level 1 Header (H1)Level 2 Header (H2)Level 5 Header (H5) |
Paragraphs
| Markdown Input | Output |
|---|---|
|
One or more consecutive lines of text separated by one or more blank lines. This is another paragraph. |
|
Line Break
To create a line break, end a line in a paragraph with two or more spaces.
|
I am a sentence with |
Lists
| Markdown Input | Output |
|---|---|
|
Unordered lists
Asterisks, plus signs or dashes:
|
|
Ordered lists
|
|
Definition lists
Multiple definitions
Multiple terms
|
|
Emphasis
| Markdown Input | Output |
|---|---|
Italic (em tag)
|
I am emphasized I am emphasized |
Bold (strong tag)
|
I am bold I am bold |
Links
| Markdown Input | Output |
|---|---|
Inline Method
|
This is an example inline link. |
| Reference Method
The reference method has two parts: The link definition and the link itself. The link definition may be placed anywhere on the page and it will not show up on the page itself.
If you don't define an id in the link, like this: |
This is an example reference-method link. |
Automatic Links
|
Code Blocks
| Markdown Input | Output |
|---|---|
|
Indent with 4 spaces.
|
This is a normal paragraph.
|
Tables
| Markdown Input | Output | ||||||
|---|---|---|---|---|---|---|---|
|
|
Literal Characters
The following characters sometimes have special meanings in Markdown. You can make sure Markdown doesn't interpret these characters by placing a backslash in front of them.
- \ backslash
- ` backtick
- * asterisk
- _ underscore
- {} curly braces
- [] square brackets
- () parentheses
- # hash mark
- + plus sign
- - minus sign (hyphen)
- . dot
- ! exclamation mark
- : colon
- | pipe
| Markdown Input | Output |
|---|---|
|
\ ` * _ {} [] () # + - . ! : | |