aoc-cli
aoc-cli copied to clipboard
feat: Colorful calendar output
This pull request brings colors for the calendar output.
Preview
Before:
After:
Explanation
This was achieved by collecting the colors using the regex to extract the information from style: these lines. Then using the proper colors with ANSI escape codes. It replaces only the colors it has found, therefore nothing will break if the format is changed, it will just fall back to the default color.
However, html2text was throwing errors on ANSI escape symbol \u{1b}, that is why this function is a workaround: it uses html2text on everything but this special character.