UNPKG

@notatki/preview

Version:

A collection of tools for creating and syncing Anki notes from simple text files.

9 lines 254 B
export function escapeHtml(text) { return String(text) .replace(/</g, "&lt;") .replace(/>/g, "&gt;") .replace(/&/g, "&amp;") .replace(/"/g, "&quot;") .replace(/'/g, "&apos;"); } //# sourceMappingURL=html.js.map