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) }}°**
with an overnight low of **{{ states('sensor.dark_sky_overnight_low_temperature_0d') | round(0) }}°**
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
<font size="3">{{ states('sensor.dark_sky_summary_0d') }} The high is <b>{{ states('sensor.dark_sky_daytime_high_temperature_0d') | round(0) }}°</b>
with an overnight low of <b>{{ states('sensor.dark_sky_overnight_low_temperature_0d') | round(0) }}°</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>