makeNonBreaking method
Replaces hyphens and spaces with non-breaking equivalents.
Implementation
String makeNonBreaking() => replaceAll('-', nonBreakingHyphen).replaceAll(' ', nonBreakingSpace);
Replaces hyphens and spaces with non-breaking equivalents.
String makeNonBreaking() => replaceAll('-', nonBreakingHyphen).replaceAll(' ', nonBreakingSpace);