Update README with UTF-8 features
This commit is contained in:
parent
8a29cf4b3a
commit
da1a1017f1
1 changed files with 18 additions and 0 deletions
|
@ -19,6 +19,11 @@ Features
|
||||||
such as non-strict emphasis, fenced code blocks, tables, autolinks,
|
such as non-strict emphasis, fenced code blocks, tables, autolinks,
|
||||||
strikethrough and more.
|
strikethrough and more.
|
||||||
|
|
||||||
|
* **UTF-8 aware**
|
||||||
|
|
||||||
|
`Sundown` is fully UTF-8 aware, both when parsing the source document and when
|
||||||
|
generating the resulting (X)HTML code.
|
||||||
|
|
||||||
* **Tested & Ready to be used on production**
|
* **Tested & Ready to be used on production**
|
||||||
|
|
||||||
`Sundown` has been extensively security audited, and includes protection against
|
`Sundown` has been extensively security audited, and includes protection against
|
||||||
|
@ -80,6 +85,19 @@ library, or a way to make it crash through malicious input, please report it to
|
||||||
either directly via email or by opening an Issue on GitHub, and help make the web safer
|
either directly via email or by opening an Issue on GitHub, and help make the web safer
|
||||||
for everybody.
|
for everybody.
|
||||||
|
|
||||||
|
Unicode character handling
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
Given that the Markdown spec makes no provision for Unicode character handling, `Sundown`
|
||||||
|
takes a conservative approach towards deciding which extended characters trigger Markdown
|
||||||
|
features:
|
||||||
|
|
||||||
|
* Punctuation characters outside of the U+007F codepoint are not handled as punctuation.
|
||||||
|
They are considered as normal, in-word characters for word-boundary checks.
|
||||||
|
|
||||||
|
* Whitespace characters outside of the U+007F codepoint are not considered as
|
||||||
|
whitespace. They are considered as normal, in-word characters for word-boundary checks.
|
||||||
|
|
||||||
Install
|
Install
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue