summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2016-02-08 13:25:00 -0800
committerMatthias Bussonnier <bussonniermatthias@gmail.com>2016-02-08 13:25:00 -0800
commit342fc93725ce00442e835b02218e232b1dd05b1e (patch)
tree056fd0e4d547175eaa66b498691bf344dbd2a8b9 /doc
parent86939c3764a93a9cd40cff29406d4d4f1ebd9c1c (diff)
downloadpygments-342fc93725ce00442e835b02218e232b1dd05b1e.tar.gz
Handle some `#ansi*` in HtmlFormatter
Diffstat (limited to 'doc')
-rw-r--r--doc/docs/styles.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/docs/styles.rst b/doc/docs/styles.rst
index 13326129..baf18113 100644
--- a/doc/docs/styles.rst
+++ b/doc/docs/styles.rst
@@ -182,5 +182,9 @@ foreground color.
>>> print(result.encode())
b'print(\x1b[34;01m"\x1b[39m\x1b[34;01mHello World\x1b[39m\x1b[34;01m"\x1b[39m)\n'
-Style that use `#ansi*` foreground colors do not currently work with formatters
-others than ``Terminal256``.
+Style that use `#ansi*` foreground colors might not correctly work with
+formatters others than ``Terminal256``. `HtmlFormatter` is capable of handling
+some `#ansi*` code and will map to the corresponding HTML/CSS color. That is to
+say, `#ansiblue` will be converted to `color:blue` , `#ansired` to `color:red`.
+The behavior is undefined for argument like `#ansireset`, `#ansiunderline`,
+`#ansibold`... etc.