Formatting content with Markdown
Markdown is a simplified way to write HTML content. We let you use it in many places such as site infos & hours, unit types infos, emails and move in agreement templates
Before publishing your content, first check how it looks here.
Get more familiar with markdown with the most common ways it is used:
Headings
# Heading 1 (largest) ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 (smallest)
Bold and italic text
This is normal text. *Text contained in 1 asterisk like this will be in italics* **Text contained in 2 asterisks like this will be in bold**
Bullet point lists
- Item 1 - Item 2 - Item 3
Numbered lists
1. Item 1 2. Item 2 3. Item 3
Links
[This is the link text](https://storeganise.com)
Links that open in new tabs
<a href="https://example.com" target="_blank">Link text</a>
Images
![Alt text](https://link-to-image.me) ![Storeganise](https://storeganise.com/logo.png) <img src="https://storeganise.com/logo.png" alt="Storeganise" height="32" />
HTML is also supported, for example your brand's logo can be resized and centered like this:
<center><img alt="{{brand.name}}" src="{{brand.logo}}" height="80" /></center> <!-- or --> <img alt="{{brand.name}}" src="{{brand.logo}}" height="80" class="d-block mx-auto" />
Horizontal line dividers
Text above the horizontal rule --- Text below the horizontal rule
Tables
| Tables | Are | Cool | | --- |:---:| ---:| | Col 3 is | right-aligned | $123 | | Col 2 is | centered | $12 | | zebra stripes | are neat | $1 |