1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
h1, h2, h3 { font-size: 1em; font-weight: bold; } h1::before { content: '# '; } h2::before { content: '## '; } h3::before { content: '### '; } ul:not(.no-markdown) { list-style-type: none; padding-left: 0; li::before { content: '\00a0- '; } }