bleak icon indicating copy to clipboard operation
bleak copied to clipboard

Implement bold in the theme

Open THS-on opened this issue 8 years ago • 3 comments

Hello, I noticed that **sometext** does not add bold to the text. I think that is has to be implemented in css on the <strong> element. (Ghost adds this to instead of **)

Thanks, THS-on

THS-on avatar Dec 21 '16 07:12 THS-on

Hi @THS-on!

Could you share more of your input and output? I just did a test post with the following content:

This should be **bold**.

And I got the following preview:

screen shot 2016-12-21 at 09 23 21

So I'm successfully getting a bold output...

unwitting avatar Dec 21 '16 09:12 unwitting

Hi. here is my version. I use Firefox 50.1.0 on Arch Linux. bold I don't have this problem in Chrome (Mobile and Desktop). In html:

  <div class="content">
    <time class="date" datetime="2016-12-21">21 Dec 2016</time>

    <p>This should be <strong>bold</strong>.</p>
  </div>

It's probably another interpretation of the css. THS-on

THS-on avatar Dec 21 '16 21:12 THS-on

The difference between Chrome and Firefox is the font-weight. Chrome:

font-weight: bold

Firefox:

font-weight: 200;

THS-on avatar Dec 21 '16 22:12 THS-on