0

I'm looking for a similar markdown syntax to ­ in HTML.

I know there are hard breaks in markdown, but I'm looking for something that acts like ­ or similar.

BonisTech
  • 342
  • 3
  • 15
  • 1
    Which Markdown processor are you using? The answer depends a little on how you process Markdown and what output is generated. – tarleb Dec 03 '22 at 20:20
  • OK this makes sense now. I'm using MDX. It's probably not supported there cause it's not working – BonisTech Jan 31 '23 at 03:35

1 Answers1

1

Most Markdown processors can process any HTML entity, including ­. So you can use that.

Demo using babelmark3

An alternative is to insert the SOFT HYPHEN (U+00AD) Unicode character directly. However, the feasibility of this depends on how easy your OS and/or editor makes entering arbitrary Unicode characters.

tarleb
  • 19,863
  • 4
  • 51
  • 80