![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
micromark-util-decode-string
Advanced tools
The micromark-util-decode-string package is a utility for decoding HTML entities and character references in strings. It is commonly used in the context of parsing and processing Markdown or HTML content.
Decode HTML Entities
This feature allows you to decode HTML entities in a string. For example, it converts '&' to '&'.
const decodeString = require('micromark-util-decode-string');
const decoded = decodeString('Hello & World');
console.log(decoded); // 'Hello & World'
Decode Numeric Character References
This feature decodes numeric character references in a string. For example, it converts '&' to '&'.
const decodeString = require('micromark-util-decode-string');
const decoded = decodeString('Hello & World');
console.log(decoded); // 'Hello & World'
Decode Hexadecimal Character References
This feature decodes hexadecimal character references in a string. For example, it converts '&' to '&'.
const decodeString = require('micromark-util-decode-string');
const decoded = decodeString('Hello & World');
console.log(decoded); // 'Hello & World'
The 'he' package is a robust HTML entity encoder/decoder. It supports both encoding and decoding of HTML entities, including named, numeric, and hexadecimal references. Compared to micromark-util-decode-string, 'he' offers more comprehensive functionality for both encoding and decoding.
The 'entities' package provides fast and robust encoding and decoding of XML and HTML entities. It supports both named and numeric entities. While micromark-util-decode-string focuses on decoding, 'entities' offers both encoding and decoding capabilities.
The 'html-entities' package is another library for encoding and decoding HTML entities. It supports named, numeric, and hexadecimal entities. Similar to micromark-util-decode-string, it provides decoding functionality but also includes encoding features.
micromark utility to decode markdown strings.
This package exposes an algorithm to parse character escapes and character references.
This package might be useful when you are making your own micromark extensions.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install micromark-util-decode-string
In Deno with esm.sh
:
import {decodeString} from 'https://esm.sh/micromark-util-decode-string@1'
In browsers with esm.sh
:
<script type="module">
import {decodeString} from 'https://esm.sh/micromark-util-decode-string@1?bundle'
</script>
import {decodeString} from 'micromark-util-decode-string'
decodeString('a ; b') // 'a ; b'
decodeString('a \\; b') // 'a ; b'
decodeString('a ; b') // 'a ; b'
This module exports the identifier decodeString
.
There is no default export.
decodeString(value)
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.
value
(string
)
— value to decodeDecoded value (string
).
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
micromark-util-decode-string@2
, compatible with Node.js 16.
This package works with micromark@3
.
This package is safe.
See security.md
in micromark/.github
for how to
submit a security report.
See contributing.md
in micromark/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
FAQs
micromark utility to decode markdown strings
The npm package micromark-util-decode-string receives a total of 4,175,369 weekly downloads. As such, micromark-util-decode-string popularity was classified as popular.
We found that micromark-util-decode-string demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.