TheChymera
TheChymera

Reputation: 17944

Bold characters inside of a word with Markdown

I am using GitHub's markdown, and I would like to emphasize the initials of an abbreviation within a few words. Majuscules are not an option, so I want to use bold text.

I have tried:

**G**esellschaft **m**it **b**eschränkter **H**aftung

Which outputs: **G**esellschaft **m**it **b**eschränkter **H**aftung

and:

**G** esellschaft **m** it **b** eschränkter **H** aftung

Which outputs: G esellschaft m it b eschränkter H aftung

How do I get my bold text and steer clear of those spaces?

Upvotes: 2

Views: 1095

Answers (1)

Victor Hurdugaci
Victor Hurdugaci

Reputation: 28435

Use html:

<b>G</b>esellschaft <b>m</b>it <b>b</b>eschränkter <b>H</b>aftung

Result:

Gesellschaft mit beschränkter Haftung

Upvotes: 2

Related Questions