Urara-Blog/node_modules/.pnpm-store/v3/files/ca/17d2807b35d991a83cce115f7050e329341f8eddb9c83fbce8cf801dfe6efcf65646a4445aff674ad292227358d6a6cc57b251a0931184a9fa059fff31cffd
2022-08-14 01:14:53 +08:00

10 lines
340 B
Text

/**
* Utility to decode markdown strings (which occur in places such as fenced
* code info strings, destinations, labels, and titles).
* The “string” content type allows character escapes and -references.
* This decodes those.
*
* @param {string} value
* @returns {string}
*/
export function decodeString(value: string): string