Pepsalt

Results 8 comments of Pepsalt

Well an issue that could potentially arise, if escape characters are ever considered when parsing new lines and stuff, is that the ascii art string could potentially contain `\n` or...

I don't know of any templaying function but I like the idea of ``` {{b}}{{-}} ``` Using double brackets to avoid the possibility of it occuring within the ASCII art...

I'm happy to see this program get developed :) I really like it and am using it as a replacement for neofetch for Powershell due to speed so I'm always...

I really like this however this does lose some functionality such as hexcode colours, is there a way to implement this? The regex would be this I believe: `((\{(#[0-9A-Fa-f]{6}|[rgbcmyBWn-])\})*.*)*` And...

I'd expand the RegexSet to match for `{colour}*{-}` and use that to create spans of colour, denoted with `*` between and trim to the first `}` and after the last...

>Note that both special characters and colors are optional, it's also more efficient if we combine the color and special character set, e.g. ({color|special})*. I didn't realise this! Whilst parsing...

>Looking much better than ANSI already. Yep and it allows for hexadecimal colours trivially which I like! >So O(2n)? Yep it should be - I'm going to say around `O(n)`...