From: Luke Bonham Date: Sat, 7 Sep 2013 13:35:52 +0000 (-0700) Subject: Updated Utilities (markdown) X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/ee627f468c6f390534c551f7bc6fa1c55e4772f5 Updated Utilities (markdown) --- diff --git a/Utilities.md b/Utilities.md index d9790da..4fc80e4 100644 --- a/Utilities.md +++ b/Utilities.md @@ -1,5 +1,45 @@ [<- home](https://github.com/copycat-killer/lain/wiki) +markup +------ + +This is a submodule which helps you markupping your text. + +First, call it like this: + + local markup = require("lain.util.markup") + +then you can call its functions: + + +-- markup + | + |`-- bold() Set bold. + |`-- italic() Set italicized text. + |`-- strike() Set strikethrough text. + |`-- underline() Set underlined text. + |`-- monospace() Set monospaced text. + |`-- big() Set bigger text. + |`-- small() Set smaller text. + |`-- font() Set the font of the text. + | + |`--+ bg + | | + | |`-- color() Set background color. + | |`-- focus() Set focus background color. + | |`-- normal() Set normal background color. + | `-- urgent() Set urgent background color. + | + |`--+ fg + | | + | |`-- color() Set foreground color. + | |`-- focus() Set focus foreground color. + | |`-- normal() Set normal foreground color. + | `-- urgent() Set urgent foreground color. + | + |`-- focus() Set both foreground and background focus colors. + |`-- normal() Set both foreground and background normal colors. + `-- urgent() Set both foreground and background urgent colors. + menu\_clients\_current\_tags ----------------------------