Markdown Cheatsheet
The following are supported Markdown syntax for the Social Networking Kit HumHub
Headers
# This is an <h1> tag
## This is an <h2> tag
### This is an <h3> tag
#### This is an <h4> tag
##### This is an <h5> tag
###### This is an <h6> tag
Blockquotes
As Kanye West said:
> We're living the future so
> the present is our past.
Emphasis
Bold
**This text will be bold**
__This will also be bold__
Italic
*This text will be italic*
_This will also be italic_
Note:
_You **can** combine both as well_
Code
Inline Code
I think you should use an
`<addr>` element here instead.
Syntax highlighting
\```javascript
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
```\
Note: That all "
\
" must be removed and all "```
" must be on its own line for Syntax highlighting to work!
Lists
Unordered
* Item 1
* Item 2
* Item 2a
* Item 2b
Ordered
1. Item 1
2. Item 2
3. Item 3
a. Item 3a
b. Item 3b
Links
https://github.com - automatic!
[GitHub](https://github.com)
or
I use [Google][1] more than [Yahoo][2] or [Bing][3].
[1]: https://google.com/ "Google Search"
[2]: https://search.yahoo.com/ "Yahoo Search"
[3]: https://www.bing.com/ "Bing Search"
Images
Non-Linked Images

Format:  - Note: Must have a image file type or won't work.
or
[![Alt text][1]
[1]: http://simplpost.com/images/sample1.jpg (hover text)
Linked Images
[](www.example.com) - Note: Must have a image file type or won't work.
or
[![Alt text][2]][1]
[1]: https://www.google.com/
[2]: https://simplpost.com/images/sample1.jpg (hover text)
Tables
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
Strikethrough
~~this~~
Horizontal Rule
Three or more...
---
Hyphens
***
Asterisks
___
Underscores
Ignoring Markdown formatting
Let's rename \*our-new-project\* to \*our-old-project\*.