[visual] Use font-weight >= 700 as bold indicator GitOrigin-RevId: 33307a3139b596868c3460c070f51adc8617cb3a
@@ -443,7 +443,7 @@ const selectors = [
createSelector({
selector: '*',
match: element =>
- parseInt(element.style.fontWeight) > 400 && hasContent(element),
+ parseInt(element.style.fontWeight) >= 700 && hasContent(element),
start: () => '\\textbf{',
end: () => '}',
inside: true,