From 53ab16c54a052b3697cd28da268ccc12e1b6fef9 Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Tue, 23 Mar 2021 21:41:52 +0100 Subject: [PATCH] Update readme.md again --- readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index d382c21..572efe0 100644 --- a/readme.md +++ b/readme.md @@ -1,23 +1,23 @@ -#cprint for Python +# cprint for Python cprint / colorPrint is a simple prettyprint function for python using ANSI escape characters. Call cprint(str), inserting the cprint codes surrounded by percent signs(Ex. below). Using getString(str) directly returns a string instead of printing to stdout. Several color tags and modifiers can be used in the same tag if they are separated by a comma -### +### Colors Text colors are denoted with the first lower case letter -> (r)ed (g)reen (b)lue (c)yan (m)agenta (y)ellow (bl)ack (w)hite Background colors are the same, but with a leading "b" -###Modifiers +### Modifiers (B)old (U)nderlined (I)nverted/reversed (RS)=reset/default -###Macros/Shortcuts +###M acros/Shortcuts (warning) = Yellow, Bold (error) = Red , Bold, Underlined -###Example code: +### Example code: ``` from cprint import * cprint("%bc,r%This is pretty high visibility %y%with different colors") @@ -25,4 +25,4 @@ cprint("%bw,b%This text is blue on white, %B,U,I% this is bold, underlined and w cprint("%warning%This is a warning!") cprint("%error%And this is an error") ``` -![Screenshot of example code](cprint-screenshot.jpg "Example") +![Screenshot of example code](cprint-screenshot.png "Example")