Lisp Docs Usage
Import
import { ReferenceAid } from '@lisp-docs/utils';
Usage
For the latest usage examples see App
Use
<ReferenceAid>programmer</ReferenceAid>
ReferenceAid
will provide a tooltip or reference if available for the string provided as a child
.
<DefinitionTooltips>
and <ReferenceLink>
are also available in case only the tooltip or link is wanted respectively.
Links
Please note because of issues with docusaurus the usage has changed:
To get a link do this:
import { ReferenceAid, getLink } from '@lisp-docs/utils';
<a href={getLink("programmer")}>
<ReferenceAid>programmer</ReferenceAid >
</a>