I wonder if this is a poll-type solution but when making text bold currently Pinegrow wraps it in a <b> tag which is semantically meaningless. I thought it was deprecated due to it being a tag associated with style and not semantics but seemingly not.
I’d love it if it used the <strong> tag.
And similarly if italicising text used <em>.
I get that this is petty but I thought I’d raise it in case this was a relic feature and maybe if the majority preferred it to be an action that creates semantic code and browsers ubiquitously bold strong tags and italicise em tags, it would make sense.
Both & will give identical results.
However, is meant to give more significance,
Personally, I use both but add some colour to strong in the CSS file.
ie.
b{
font-weight: bolder;
}
strong {
font-weight: bolder;
color:#55789f;
}
SEO as a byproduct of writing semantic code. I wouldn’t say a strong tag would make any tangible difference to SEO specifically.
b is semantically meaningless and is a legacy piece of HTML when we were styling elements with HTML. Since CSS/HTML 5 HTML should be responsible for meaning only and CSS for style.