markdown horizontal rule code example
Example 1: how to add horizontal ruler to md
use three or more
asterisks ( *** ),
dashes ( --- ),
or underscores ( ___ ) on a line
Example 2: bold markdown
# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold
# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow
Example 3: Markdown heading
# Title //Creates a h1
## Title //Creates a h2
##### Title //Creates a h5
Example 4: markdown horizontal line
***
---
_________________