-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdata.json
14 lines (14 loc) Β· 2.23 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[
{
"id": "0",
"createdAt": { "seconds": 1658188207, "nanoseconds": 859000000 },
"title": "untitled-document.md",
"content": "# EDIT ME!!!"
},
{
"id": "1",
"createdAt": { "seconds": 1658188207, "nanoseconds": 859000000 },
"title": "welcome.md",
"content": "# Welcome to Markdown\n\nMarkdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.\n\n## How to use this?\n\n1. Write markdown in the markdown editor window\n2. See the rendered markdown in the preview window\n\n### Features\n\n- Create headings, paragraphs, links, blockquotes, inline-code, code blocks, and lists\n- Name and save the document to access again later\n- Choose between Light or Dark mode depending on your preference\n\n> This is an example of a blockquote. If you would like to learn more about markdown syntax, you can visit this [markdown cheatsheet](https://www.markdownguide.org/cheat-sheet/).\n\n#### Headings\n\nTo create a heading, add the hash sign (#) before the heading. The number of number signs you use should correspond to the heading level. You'll see in this guide that we've used all six heading levels (not necessarily in the correct way you should use headings!) to illustrate how they should look.\n\n##### Lists\n\nYou can see examples of ordered and unordered lists above.\n###### Ordered checklist\n1. [ ] This is an unchecked list item\n2. [X] This is checked list item\n###### Unordered checklist\n- [ ] This is an unchecked list item\n- [X] This is checked list item\n\n##### Tables\n\n| Heading | A | B | C |\n| :-: | -: | :- | - |\n| Cell 1 | Cell 2 | Cell 3 | Cell 4 |\n\n###### Code Blocks\n\nThis markdown editor allows for inline-code snippets, like this: `<p>I'm inline</p>`. It also allows for larger code blocks like this:\n\n```\n<main>\n <h1>This is a larger code block</h1>\n</main>\n```\n\n##### Images\n\nThis app was built with:\n![NextJS](https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white) ![TailwindCSS](https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white) ![Firebase](https://img.shields.io/badge/firebase-ffca28?style=for-the-badge&logo=firebase&logoColor=black)"
}
]