ansi-to-html
ansi-to-html copied to clipboard
Convert ansi escaped text streams to html.
Builds on #57 . I have switched here to using `` instead of ``. The reason is that span will not allow overriding `text-decoration` styles (I had some underlining which...
CSS
This PR offers a fix for #51 (option to display spaces). It also adds on PR #55. ~I also switched to using `` instead of ``.~ ~The reason is that...
It helps to use `ansi-to-html` easier - https://observablehq.com/@observablehq/module-require-debugger
Hi, thanks a lot for the great job on ansi-to-html! I'm a Drone CI user, Drone CI use ansi-to-html to render console output. It works almost fine, while `tput` doesn't...
The following code will produce an infinite loop that ansi-to-html never returns from: ``` var Convert = require('ansi-to-html'); var convert = new Convert(); console.log(convert.toHtml('\u001b[15;1!\u001b[17;2!\u001b[11;0;3549;3080;3840;241;943;4082;3086;124;221;175;124;15;1807;3086;221!')); ```
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Currently the library is generating styles. Would it be possible to generate classes instead? It would make it easier to do customizations to other attributes other than color.
I'm newbie at JS I tried to write very simple JS just to load response body from REST service and parse ANSI text into HTML and got stuck at the...
I want to output bash output on web page, but this lib only convert ANSI color code and no supporting for '\t' and others. 
I'm using this https://github.com/microsoft/node-pty and this ansi-to-html doesn't work well with it, it works maybe 50%, but still leaves some invalid text left. Is it possible to support this?