Custom Email - Markdown Language

Overview

When formatting the body message of your custom email templates, Keeper supports plain text as well as basic markdown syntax. This document will go over the markdown syntax supported by Keeper

Heading

To create a heading, add the hash symbol (#) in front of a word or phrase. The number of hash symbols you use corresponds to the heading level.

Markdown SyntaxFont Size

# heading 1

Heading of font size 32

## heading 2

Heading of font size 24

### heading 3

Heading of font size 19

#### heading 4

Heading of font size 16

##### heading 5

Heading of font size 13

###### heading 6

Heading of font size 11

Paragraphs

Sentences are plain text and multiple sentences can be grouped together to form a paragraph.

Do not indent paragraphs with spaces or tabs as it can cause formatting issues

Markdown SyntaxRendered Output

This is a one line paragraph

This is a one line paragraph

This is a multiline paragraph. I like formatting

This is a multiline paragraph. I like formatting

Line Breaks

To create a line break or new line, press return or enter at the end of the line. Pressing return or enter multiple times will create multiple line breaks

Markdown SyntaxRendered Output

This is an example. Of a linebreak.

This is an example. Of a linebreak.

This is an example. Of Multiple linebreaks.

This is an example. Of Multiple linebreaks.

Bold & Italic

To bold text, add 2 asterisks (**) To italicize text , add 1 asterisk (*)

Markdown SyntaxRendered Output

This is **bold**

This is bold

This is *italics*

This is italics

This is **bold** and *italics*

This is bold and italics

To create a link, enclose the link text in brackets (i.e. [Keeper]) and place the URL in parentheses (i.e. (https://keepersecurity.com)). You can also format (bold or italics) the link as needed.

Markdown SyntaxRendered Output

Visit [Keeper](https://keepersecurity.com)!

Visit Keeper!

Embed Images from URL

To embed images from URL, add an exclamation mark (!), followed by the word Image in brackets, and the path or URL to the image asset in parentheses:

![Image](https://keeper-email-images.s3.amazonaws.com/common/acme.jpg)

Last updated