// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`renders the markdown syntax component 1`] = `

Markdown Syntax

Supported Markdown is limited to bold, hyperlinks and single-level unordered lists. All other text and markdown will be rendered as plain text.

Bold

To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two asterisks without spaces around the letters.

Markdown Rendered output
I love **bold** text

I love bold text

Hyperlink

To create a link, enclose the link text in brackets (e.g., [AWS]) and then follow it immediately with the URL in parentheses (e.g., (https://aws.amazon.com)).

Markdown Rendered output
I love [AWS](https://aws.amazon.com)

I love AWS

Unordered list

To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) and space in front of line items.

Markdown Rendered output
+ First item
* Second item
- Third item
+ Fourth item
  • First item
  • Second item
  • Third item
  • Fourth item
`;