data lt noDefault - speced/respec GitHub Wiki
Applies to: <dfn>
Prevents the element's text content from being used as a linking term. Only the values defined in data-lt are used for linking. Useful for disambiguating two definitions that would otherwise have the same default link text.
<dfn>The Foo</dfn>
<!-- Links as "The Foo" -->
<dfn data-lt="alternative foo" data-lt-noDefault>The Foo</dfn>
<!-- Links only as "alternative foo" — "The Foo" text is ignored -->- Without
data-lt-noDefault, having two<dfn>elements with the same text content would cause a disambiguation error -
data-lt-noDefaultlets you give a definition a unique programmatic name (viadata-lt) while the display text can still match another definition