Instead of using *** or ---, try:
<hr style="border:2px solid gray">
ID : 131355
viewed : 7
100
Instead of using *** or ---, try:
<hr style="border:2px solid gray">
88
From the cheatsheet
Three or more...
Hyphens
---
Asterisks
***
Underscores
___
give you the same thing, which is the standard horizontal line.
You cannot style markdown, you get what you get. Github chooses the style.
60
Use:
<hr style="border:2px solid blue">
Here the colour of the line has been changed as well. This method uses standard HTML markup and works much better than just "***".
53