Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Markdown heading with a bullet

I am aware this might be a weird requirement that does not fit into the semantics of markdown, but is it possible to have a bulleted heading?

I.e. is there a way to combine # Key point with - Key point into something like # - Key point? Obviously, this does not render the heading with a bullet.

like image 282
ccpizza Avatar asked Sep 16 '25 03:09

ccpizza


1 Answers

You could use a Unicode symbol instead of relying on Markdown to process the bullet. U+2022 BULLET is probably your best bet:

# • Key point

Here it is rendered on Stack Overflow:

• Key point

like image 154
Chris Avatar answered Sep 19 '25 14:09

Chris