A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/wooorm/html-encodings below:

wooorm/html-encodings: Info on HTML character encodings.

Info on HTML character encodings.

This package contains info on HTML character encoding labels. These are defined by the Encoding spec.

Maybe when you’re writing an HTML parser, minifier, or formatter, otherwise probably never!

This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:

npm install html-encodings

In Deno with esm.sh:

import {list, groups} from 'https://esm.sh/html-encodings@3'

In browsers with esm.sh:

<script type="module">
  import {list, groups} from 'https://esm.sh/html-encodings@3?bundle'
</script>
import {list, groups} from 'html-encodings'

console.log(list.slice(0, 10))
console.log(groups['UTF-8'])

Yields:

[
  'utf8',
  'utf-8',
  'unicode11utf8',
  'unicode20utf8',
  'x-unicode20utf8',
  'unicode-1-1-utf-8',
  '866',
  'cp866',
  'ibm866',
  'csibm866'
]
[
  'utf8',
  'utf-8',
  'unicode11utf8',
  'unicode20utf8',
  'x-unicode20utf8',
  'unicode-1-1-utf-8'
]

This package exports the identifier list and groups. There is no default export.

List of all encodings (lowercase) (Array<string>).

Map of group labels to lists of synonymous (lowercase) encodings (Record<string, Array<string>>).

This package is fully typed with TypeScript. It exports no additional types.

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.

This package is safe.

Yes please! See How to Contribute to Open Source.

MIT © Titus Wormer


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4