Advertisement
Guest User

Untitled

a guest
Nov 14th, 2023
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. import {CodeBlock} from "../elements/CodeBlock.js";
  2. import {InfoPanel} from "../elements/InfoPanel.js";
  3.  
  4.  
  5. -------------
  6. title: 'Markdown Test'
  7. date: 'November 01, 2023'
  8. description: 'Just a test file'
  9. -------------
  10.  
  11.  
  12.  
  13. # Welcome to my MDX page!
  14.  
  15. <InfoPanel>
  16.  
  17. Test input
  18.  
  19. </InfoPanel>
  20.  
  21.  
  22.  
  23. # Headings
  24.  
  25.  
  26. # Heading level 1
  27. ## Heading level 1
  28. ### Heading level 1
  29. #### Heading level 1
  30. ##### Heading level 1
  31. ###### Heading level 1
  32.  
  33. <br/>
  34.  
  35. # Paragraphs
  36.  
  37.  
  38. I really like using Markdown.
  39.  
  40. I think I'll use it to format all of my documents from now on.
  41.  
  42. <br/>
  43.  
  44. # Line Breaks
  45.  
  46. This is the first line.
  47. And this is the second line.
  48.  
  49. <br/>
  50.  
  51. # Bold
  52.  
  53. I just love **bold text**.
  54.  
  55. I just love __bold text__.
  56.  
  57. Love**is**bold
  58.  
  59. <br/>
  60.  
  61. # Italic
  62.  
  63. Italicized text is the *cat's meow*.
  64.  
  65. Italicized text is the _cat's meow_.
  66.  
  67. A*cat*meow
  68.  
  69.  
  70.  
  71. <br/>
  72.  
  73.  
  74.  
  75. # Bold and Italic
  76.  
  77. This text is ***really important***.
  78.  
  79. This text is ___really important___.
  80.  
  81. This text is __*really important*__.
  82.  
  83. This text is **_really important_**.
  84.  
  85. This is really***very***important text.
  86.  
  87.  
  88. <br/>
  89.  
  90. # Blockquotes
  91.  
  92. > Dorothy followed her through many of the beautiful rooms in her castle.
  93.  
  94.  
  95. <br/>
  96.  
  97. # Blockquotes with Multiple Paragraphs
  98.  
  99. > Dorothy followed her through many of the beautiful rooms in her castle.
  100. >
  101. > The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
  102.  
  103.  
  104.  
  105. <br/>
  106.  
  107. # Nested Blockquotes
  108.  
  109. > Dorothy followed her through many of the beautiful rooms in her castle.
  110. >
  111. >> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
  112.  
  113.  
  114. <br/>
  115.  
  116. # Blockquotes with Other Elements
  117.  
  118.  
  119. > #### The quarterly results look great!
  120. >
  121. > - Revenue was off the chart.
  122. > - Profits were higher than ever.
  123. >
  124. > *Everything* is going according to **plan**.
  125.  
  126.  
  127. <br/>
  128.  
  129. # Lists
  130.  
  131. 1. First item
  132. 2. Second item
  133. 3. Third item
  134. 4. Fourth item
  135.  
  136.  
  137.  
  138. 1. First item
  139. 1. Second item
  140. 1. Third item
  141. 1. Fourth item
  142.  
  143.  
  144.  
  145. 1. First item
  146. 8. Second item
  147. 3. Third item
  148. 5. Fourth item
  149.  
  150.  
  151.  
  152.  
  153. 1. First item
  154. 2. Second item
  155. 3. Third item
  156. 1. Indented item
  157. 2. Indented item
  158. 4. Fourth item
  159.  
  160.  
  161. <br/>
  162.  
  163.  
  164. # Unordered Lists
  165.  
  166.  
  167.  
  168. - First item
  169. - Second item
  170. - Third item
  171. - Fourth item
  172.  
  173.  
  174.  
  175. * First item
  176. * Second item
  177. * Third item
  178. * Fourth item
  179.  
  180.  
  181.  
  182. + First item
  183. + Second item
  184. + Third item
  185. + Fourth item
  186.  
  187.  
  188.  
  189.  
  190.  
  191. - First item
  192. - Second item
  193. - Third item
  194. - Indented item
  195. - Indented item
  196. - Fourth item
  197.  
  198.  
  199. <br/>
  200.  
  201. # Adding Elements in Lists
  202.  
  203. <br/>
  204.  
  205. ### Paragraphs
  206.  
  207. * This is the first list item.
  208. * Here's the second list item.
  209.  
  210. I need to add another paragraph below the second list item.
  211.  
  212. * And here's the third list item.
  213.  
  214.  
  215. <br/>
  216.  
  217. ### Blockquotes
  218.  
  219.  
  220. * This is the first list item.
  221. * Here's the second list item.
  222.  
  223. > A blockquote would look great below the second list item.
  224.  
  225. * And here's the third list item.
  226.  
  227. <br/>
  228.  
  229.  
  230. # Code Blocks
  231.  
  232.  
  233. 1. Open the file.
  234. 2. Find the following code block on line 21:
  235.  
  236. Error Here
  237.  
  238. 3. Update the title to match the name of your website.
  239.  
  240.  
  241. <br/>
  242.  
  243.  
  244. # Images
  245.  
  246.  
  247. 1. Open the file containing the Linux mascot.
  248. 2. Marvel at its beauty.
  249.  
  250. ![Tux, the Linux mascot](./img/images/tux.png)
  251.  
  252. 3. Close the file.
  253.  
  254.  
  255.  
  256. <br/>
  257.  
  258.  
  259. # Lists
  260.  
  261. 1. First item
  262. 2. Second item
  263. 3. Third item
  264. - Indented item
  265. - Indented item
  266. 4. Fourth item
  267.  
  268.  
  269.  
  270. <br/>
  271.  
  272.  
  273. # Code
  274.  
  275. At the command prompt, type `nano`.
  276.  
  277. <br/>
  278.  
  279. ### Escaping Backticks
  280.  
  281. ``Use `code` in your Markdown file.``
  282.  
  283.  
  284.  
  285.  
  286. Code Blocks
  287.  
  288. Error Here
  289.  
  290.  
  291.  
  292.  
  293. Horizontal Rules
  294.  
  295.  
  296.  
  297. ***
  298.  
  299. ---
  300.  
  301.  
  302. ___
  303.  
  304.  
  305.  
  306.  
  307. Links
  308.  
  309. My favorite search engine is [Duck Duck Go](https://duckduckgo.com).
  310.  
  311.  
  312. <CodeBlock></CodeBlock>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement