123456789101112131415161718192021222324252627282930313233 |
- import {decodeString} from 'micromark-util-decode-string'
- export function association(node) {
- if (node.label || !node.identifier) {
- return node.label || ''
- }
- return decodeString(node.identifier)
- }
|