mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-05 02:17:19 +08:00
10 lines
340 B
Text
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
|