Notes :markdown test page

Created:

The page demonstrates and tests cascading styles for Markdown code, showcasing elements like headers, lists, blockquotes, and code blocks. It ensures proper styling, readability, and consistency across different elements.

Markdown styling test page

h2 heading

h3 heading

h4 heading

h5 heading
h6 heading
# h1
## h2
### h3
#### h4
##### h5
###### h6

Paragraph

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Id donec ultrices tincidunt arcu non sodales. Magna ac placerat vestibulum lectus mauris ultrices eros.

Other common elements

ElementSyntaxExample
Strong**bold text**bold text
Em_emphasized_emphasized
Strong + Em***bold and emphasized***bold and emphasized
String w/ Em**bold with _emphasized_ within**bold with emphasized within
Link[labue](https://labue.codes)labue

Ordered List

  1. First item
  2. Second item
  3. Third item
1. First item
2. Second item
3. Third item

Unordered List

  • First item
  • Second item
  • Third item
- First item
- Second item
- Third item

Blockquote

Iaculis eu non diam phasellus. Morbi tristique senectus et netus et. Eu turpis egestas pretium aenean pharetra.

> Iaculis eu non diam phasellus. Morbi tristique senectus et netus et. Eu turpis egestas pretium aenean pharetra.

Horizontal rule

Hyphens ---:


Underscores ___:


Code

document.write("Hello, World!");
<?php
  echo "Hello, World!";
?>