ansi4j icon indicating copy to clipboard operation
ansi4j copied to clipboard

ANSI4J is a library that includes Java parser for processing text with ANSI escape codes (ISO/IEC 6429 control functions) and a CSS generator for styling the text.

Results 3 ansi4j issues
Sort by recently updated
recently updated
newest added

At the moment when TextAttributeConfig is created concrete colors are used: ``` int fgColor = 0xffffff; int bgColor = 0x000000; attributeConfig = new DefaultTextAttributeConfig.Builder() .defaultForegroundColor(fgColor) .defaultBackgroundColor(bgColor) .extraColorsEnabled(true) .palette16(palette) .build(); ```...

enhancement

There is UNSUPPORTED_DEFAULT_VALUE with default access modifier that is not used.

enhancement

`Css3Generator` should be renamed to `WebCssGenerator` or `HtmlCssGenerator`.