export declare const mockMarkdown = "\n---\n## Headings\n---\n\n# h1 Heading\n\n## h2 Heading\n\n### h3 Heading\n\n#### h4 Heading\n\n##### h5 Heading\n\n###### h6 Heading\n\n---\n\n## Emphasis\n\n---\n\n**This is bold text**\n\n**This is bold text**\n\n_This is italic text_\n\n_This is italic text_\n\n---\n\n## Blockquotes\n\n---\n\n> Blockquotes can also be nested...\n>\n> > ...by using additional greater-than signs right next to each other...\n> >\n> > > ...or with spaces between arrows.\n\n---\n\n## Lists\n\n---\n\n### Unordered\n\n- Create a list by starting a line with `+`, `-`, or `*`\n- Sub-lists are made by indenting 2 spaces:\n - Marker character change forces new list start:\n - Ac tristique libero volutpat at\n * Facilisis in pretium nisl aliquet\n - Nulla volutpat aliquam velit\n- Very easy!\n\n### Ordered\n\n1. Lorem ipsum dolor sit amet\n2. Consectetur adipiscing elit\n3. Integer molestie lorem at massa\n\n4. You can use sequential numbers...\n5. ...or keep all the numbers as `1.`\n\n---\n\n## Code\n\n---\n\n### Inline code\n\nThis is inline `code`\n\n### Indented code\n\n // Some comments\n line 1 of code\n line 2 of code\n line 3 of code\n\n### Block code \"fences\"\n\n```\nSample text here...\n```\n\n---\n\n## Links\n\n---\n\n[link text](http://dev.nodeca.com)\n\n[link with title](http://nodeca.github.io/pica/demo/ 'title text!')\n\n---\n\n## Images\n\n---\n\n![Minion](https://octodex.github.com/images/minion.png)\n![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg 'The Stormtroopocat')\"\n";