KristofferC / Crayons.jl

Colored and styled strings for terminals.
Other
150 stars 14 forks source link

Feature request: support capitalization #66

Closed JTaets closed 1 year ago

JTaets commented 1 year ago

I know uppercase(str) works fine, but it would be nice to support it with the syntax in this package.

KristofferC commented 1 year ago

I don't really understand the feature request here. Could you give an example of what you want to do?

JTaets commented 1 year ago

Apologies. I ment that something like crayon"red bold uppercase"("This is red, bold and uppercased") would be nice to use as a replacement for crayon"red bold"(uppercase("This is red, bold and uppercased"))

KristofferC commented 1 year ago

I think it is better to limit this package to only consider the format of the text (colors, boldness etc) and then use the normal string functions to change the content of strings.