Skip to content

Commit bc6b503

Browse files
authored
Merge pull request #2743 from jmcwilliams403/nabla-alphanum-specimen
Website specimen: Treat Nabla and Partial Differential in Mathematical Alphanumeric Symbols block as letter.
2 parents 04d8c69 + c142bec commit bc6b503

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pages/specimen.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ function charHasVariants(atlas: Coverage.Atlas, props: SpecimenCharacterProps) {
499499
}
500500

501501
function charIsSpecial(lch: number) {
502-
return lch < 0x0020 || (lch >= 0xfff0 && lch <= 0xffff) || lch === 0x034f;
502+
return lch < 0x0020 || (lch >= 0xfff0 && lch <= 0xffff) || lch === 0x034f || lch === 0xfeff;
503503
}
504504

505505
function SpecimenCharacterVariantsMarker(props: SpecimenCharacterProps) {
@@ -616,7 +616,8 @@ function SpecimenCharacterImpl(props: SpecimenCharacterImplProps) {
616616
gc === "Lowercase_Letter" ||
617617
gc === "Titlecase_Letter" ||
618618
gc === "Other_Letter" ||
619-
props.blockName === "Currency Symbols");
619+
props.blockName === "Currency Symbols" ||
620+
props.blockName === "Mathematical Alphanumeric Symbols");
620621
return (
621622
<div
622623
className={joinCls(

0 commit comments

Comments
 (0)