- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
/**
|
|
* 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
|
|
* Value to decode.
|
|
* @returns {string}
|
|
* Decoded value.
|
|
*/
|
|
export function decodeString(value: string): string
|