1

I am aware this might be a weird requirement that does not fit into the semantics of markdown, but is it possible 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.

TylerH
  • 20,799
  • 66
  • 75
  • 101
ccpizza
  • 28,968
  • 18
  • 162
  • 169

1 Answers1

2

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

ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257
  • in fact `•` is also valid markdown and can save extra searching for the literal unicode character, but it is a smaller size bullet than `●` – ccpizza Apr 11 '22 at 09:30