You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you use the markdown syntax to make text bold, it does not work. The text looks the same.
Diagnosis
It looks like using the syntax does add the <strong> tag to text marked as bold by markdown. It looks like src/css/global.css sets the style for strong as font-weight: 500. Is there a reason this was done?
Implementation
Change the style for <strong> in src/css/global.css to something like font-weight: 900.
The text was updated successfully, but these errors were encountered:
nezartarbin
changed the title
[Feature Request] Make Markdown's Bold and Italics Work
[Feature Request] Make Markdown's Bold Text Work
Mar 11, 2024
Description
Currently, if you use the markdown syntax to make text bold, it does not work. The text looks the same.
Diagnosis
It looks like using the syntax does add the
<strong>
tag to text marked as bold by markdown. It looks likesrc/css/global.css
sets the style forstrong
asfont-weight: 500
. Is there a reason this was done?Implementation
Change the style for
<strong>
insrc/css/global.css
to something likefont-weight: 900
.The text was updated successfully, but these errors were encountered: