Creates an AnsiTextLite from the given text. This function is mostly used when using the fluent UFCS chaining pattern.
The text to use.
An AnsiTextLite from the given text.
version(none) { import std.stdio; writeln("Hello, World!".ansi .fg(Ansi4BitColour.red) .bg(AnsiRgbColour(128, 128, 128)) .style(AnsiStyle.init.bold.underline) ); }
See Implementation
Creates an AnsiTextLite from the given text. This function is mostly used when using the fluent UFCS chaining pattern.