Markdown formatting (bold) not working

I have this code that returns some descriptive text from my weather sensors. I have it set so that the temperature values are in bold using ** and it used to work fine. I just noticed yesterday that the temps are no longer in bold but that the ** are showing in the card. Did something change that I missed? I am on 118.3 if that matters.

content: >-
  <font size="3">{{ states('sensor.dark_sky_summary_0d') }}  The high is **{{ states('sensor.dark_sky_daytime_high_temperature_0d') | round(0) }}&deg;**
  with an overnight low of **{{ states('sensor.dark_sky_overnight_low_temperature_0d') | round(0) }}&deg;** 
  and a **{{ states('sensor.dark_sky_precip_probability_0d') | round(0) }}%** chance of {% if is_state('sensor.dark_sky_precip_0d', "unknown") %} precipitation{% else %} 
  {{ states('sensor.dark_sky_precip_0d') }}{% endif %}.</font>
type: markdown

Showing as:

image

The code works correctly if I remove the font size formatting. It previously worked fine with the font size. Did something change?

try

  <font size="3">{{ states('sensor.dark_sky_summary_0d') }}  The high is <b>{{ states('sensor.dark_sky_daytime_high_temperature_0d') | round(0) }}&deg;</b>
  with an overnight low of <b>{{ states('sensor.dark_sky_overnight_low_temperature_0d') | round(0) }}&deg;</b> 
  and a <b>{{ states('sensor.dark_sky_precip_probability_0d') | round(0) }}%</b> chance of {% if is_state('sensor.dark_sky_precip_0d', "unknown") %} precipitation{% else %} 
  {{ states('sensor.dark_sky_precip_0d') }}{% endif %}.</font>

That worked. Thanks. Why were the ** not working as before?

Not sure, but when you wrap things in html, it’s probably best to keep everything as HTML