Corrected documentation for iso-2022-jp-ext (implementation unchanged) (#8)

This commit is contained in:
HarJIT 2021-04-09 09:59:39 +01:00 committed by GitHub
parent 562b3b4122
commit 0ef38bb6ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ The list of codecs (not an exhaustive list of labels, nor close to one) is as fo
|`hz-gb-2312`|HZ (Usenet Simplified Chinese) encoding|
|`iso-2022-cn`|7-bit stateful Chinese (Simplified and Traditional)|
|`iso-2022-jp`|7-bit stateful Japanese, web version|
|`iso-2022-jp-ext`|7-bit stateful Japanese, preserving katakana width|
|`iso-2022-jp-ext`|7-bit stateful Japanese, including JIS X 0212 and preserving katakana width|
|`iso-2022-jp-1`|7-bit stateful Japanese, including JIS X 0212|
|`iso-2022-jp-2`|7-bit stateful Multilingual (Japanese, Korean, Greek, Simplified Chinese, Western European)|
|`iso-2022-jp-3`|7-bit stateful Japanese, including JIS X 0213 (2000 edition format)|

View File

@ -671,7 +671,7 @@ class Iso2022JpExtIncrementalEncoder(Iso2022JpIncrementalEncoder):
"""
IncrementalEncoder implementation for 7-bit stateful Japanese.
This differs from the ISO-2022-JP encoder in that it preserves katakana width.
This differs from the ISO-2022-JP-1 encoder in that it preserves katakana width.
"""
name = "iso-2022-jp-ext"
html5name = None