-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.json
60 lines (60 loc) · 2.07 KB
/
output.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[
"# Example Markdown Document\n",
"## Headers\n",
"Markdown supports different levels of headers:\n",
"## Emphasis\n",
"You can add emphasis using:\n",
"- **Bold text**: `**Bold text**` or `__Bold text__`\n",
"- *Italic text*: `*Italic text*` or `_Italic text_`\n",
"- ***Bold and italic text***: `***Bold and italic text***`\n",
"### Unordered List\n",
"- Item 1\n",
"- Item 2\n",
" - Subitem 2.1\n - Subitem 2.2",
"\n- Item 3",
"### Ordered List\n",
"1. First item\n",
"2. Second item\n",
" 1. Subitem 2.1\n",
" 2. Subitem 2.2\n",
"3. Third item\n",
"## Links and Images\n",
"You can add links and images:\n",
"- [Link to Perplexity](https://www.perplexity.ai/)\n",
"- Image of Markdown Logo\n",
"## Blockquotes\n",
"> This is a blockquote. Blockquotes are great for highlighting quotes or important information.\n",
"## Code\n",
"### Inline Code\n",
"Use backticks for `inline code`.\n",
"### Code Block\n",
"```python\ndef hello_world():\n print(\"Hello, world!\")\nhello_world()\n```\n",
"## Tables\n",
"You can create tables to display data:\n",
"| Name | Age | Occupation |\n|----------|",
"-----|-------------|",
"\n| Alice | 30 | Engineer |\n| Charlie | 35 | Teacher |",
"\n\n## Footnotes",
"Here's a sentence with a footnote.[^1]\n",
"[^1]: This is the footnote text.\n",
"# Heading 1\n",
"This is a paragraph with a citation [1] and some text.\n",
"## Heading 2\n",
"- Bullet list item 1\n",
"- Bullet list item 2 with emoji 😊\n",
"1. Numbered list item 1\n",
"2. Numbered list item 2\n",
"> Blockquote with some text.\n",
">> Nested blockquote.\n",
"\n\n Indented code block",
"\n\n| Table Header 1 | Table Header 2 |",
"\n| -------------- | -------------- |\n| Cell 1 | Cell 2 |\n| Cell 3 | Cell 4 |",
"\n\n---",
"\n\nStandalone line with punctuation!",
"\n\n\"This is a quoted text.\"",
"\n\n<p>This is an HTML paragraph.</p>",
"\n\n$$",
"x = y + z\n",
"$$\n",
"\n\nFallback content that doesn't fit other categories."
]