Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import {CodeBlock} from "../elements/CodeBlock.js";
- import {InfoPanel} from "../elements/InfoPanel.js";
- -------------
- title: 'Markdown Test'
- date: 'November 01, 2023'
- description: 'Just a test file'
- -------------
- # Welcome to my MDX page!
- <InfoPanel>
- Test input
- </InfoPanel>
- # Headings
- # Heading level 1
- ## Heading level 1
- ### Heading level 1
- #### Heading level 1
- ##### Heading level 1
- ###### Heading level 1
- <br/>
- # Paragraphs
- I really like using Markdown.
- I think I'll use it to format all of my documents from now on.
- <br/>
- # Line Breaks
- This is the first line.
- And this is the second line.
- <br/>
- # Bold
- I just love **bold text**.
- I just love __bold text__.
- Love**is**bold
- <br/>
- # Italic
- Italicized text is the *cat's meow*.
- Italicized text is the _cat's meow_.
- A*cat*meow
- <br/>
- # Bold and Italic
- This text is ***really important***.
- This text is ___really important___.
- This text is __*really important*__.
- This text is **_really important_**.
- This is really***very***important text.
- <br/>
- # Blockquotes
- > Dorothy followed her through many of the beautiful rooms in her castle.
- <br/>
- # Blockquotes with Multiple Paragraphs
- > Dorothy followed her through many of the beautiful rooms in her castle.
- >
- > The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
- <br/>
- # Nested Blockquotes
- > Dorothy followed her through many of the beautiful rooms in her castle.
- >
- >> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
- <br/>
- # Blockquotes with Other Elements
- > #### The quarterly results look great!
- >
- > - Revenue was off the chart.
- > - Profits were higher than ever.
- >
- > *Everything* is going according to **plan**.
- <br/>
- # Lists
- 1. First item
- 2. Second item
- 3. Third item
- 4. Fourth item
- 1. First item
- 1. Second item
- 1. Third item
- 1. Fourth item
- 1. First item
- 8. Second item
- 3. Third item
- 5. Fourth item
- 1. First item
- 2. Second item
- 3. Third item
- 1. Indented item
- 2. Indented item
- 4. Fourth item
- <br/>
- # Unordered Lists
- - First item
- - Second item
- - Third item
- - Fourth item
- * First item
- * Second item
- * Third item
- * Fourth item
- + First item
- + Second item
- + Third item
- + Fourth item
- - First item
- - Second item
- - Third item
- - Indented item
- - Indented item
- - Fourth item
- <br/>
- # Adding Elements in Lists
- <br/>
- ### Paragraphs
- * This is the first list item.
- * Here's the second list item.
- I need to add another paragraph below the second list item.
- * And here's the third list item.
- <br/>
- ### Blockquotes
- * This is the first list item.
- * Here's the second list item.
- > A blockquote would look great below the second list item.
- * And here's the third list item.
- <br/>
- # Code Blocks
- 1. Open the file.
- 2. Find the following code block on line 21:
- Error Here
- 3. Update the title to match the name of your website.
- <br/>
- # Images
- 1. Open the file containing the Linux mascot.
- 2. Marvel at its beauty.
- 
- 3. Close the file.
- <br/>
- # Lists
- 1. First item
- 2. Second item
- 3. Third item
- - Indented item
- - Indented item
- 4. Fourth item
- <br/>
- # Code
- At the command prompt, type `nano`.
- <br/>
- ### Escaping Backticks
- ``Use `code` in your Markdown file.``
- Code Blocks
- Error Here
- Horizontal Rules
- ***
- ---
- ___
- Links
- My favorite search engine is [Duck Duck Go](https://duckduckgo.com).
- <CodeBlock></CodeBlock>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement