mirror of https://github.com/lcpz/lain.git
util.markup: fixed typos
This commit is contained in:
parent
c02fcdb2e9
commit
eb8c113fc8
|
@ -25,37 +25,37 @@ function markup.small(text) return format("<small>%s</small>", text) end
|
||||||
|
|
||||||
-- Set the font
|
-- Set the font
|
||||||
function markup.font(font, text)
|
function markup.font(font, text)
|
||||||
return format("<span font='%s'>%s</span>", font, text)
|
return format("<span font='%s'>%s</span>", font, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set the foreground
|
-- Set the foreground
|
||||||
function markup.fg.color(color, text)
|
function markup.fg.color(color, text)
|
||||||
return format("<span foreground='%s'>%s</span>", fg, bg, text)
|
return format("<span foreground='%s'>%s</span>", color, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set the background
|
-- Set the background
|
||||||
function markup.bg.color(color, text)
|
function markup.bg.color(color, text)
|
||||||
return format("<span background='%s'>%s</span>", fg, bg, text)
|
return format("<span background='%s'>%s</span>", color, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set foreground and background
|
-- Set foreground and background
|
||||||
function markup.color(fg, bg, text)
|
function markup.color(fg, bg, text)
|
||||||
return format("<span foreground='%s' background='%s'>%s</span>", fg, bg, text)
|
return format("<span foreground='%s' background='%s'>%s</span>", fg, bg, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set font and foreground
|
-- Set font and foreground
|
||||||
function markup.fontfg(font, fg, text)
|
function markup.fontfg(font, fg, text)
|
||||||
return format("<span font='%s' foreground='%s'>%s</span>", font, fg, text)
|
return format("<span font='%s' foreground='%s'>%s</span>", font, fg, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set font and background
|
-- Set font and background
|
||||||
function markup.fontbg(font, bg, text)
|
function markup.fontbg(font, bg, text)
|
||||||
return format("<span font='%s' background='%s'>%s</span>", font, bg, text)
|
return format("<span font='%s' background='%s'>%s</span>", font, bg, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set font, foreground and background
|
-- Set font, foreground and background
|
||||||
function markup.fontcolor(font, fg, bg, text)
|
function markup.fontcolor(font, fg, bg, text)
|
||||||
return format("<span font='%s' foreground='%s' background='%s'>%s</span>", font, fg, bg, text)
|
return format("<span font='%s' foreground='%s' background='%s'>%s</span>", font, fg, bg, text)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- link markup.{fg,bg}(...) calls to markup.{fg,bg}.color(...)
|
-- link markup.{fg,bg}(...) calls to markup.{fg,bg}.color(...)
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit 0d9b19badf44b16c27663dd4dc7f49699a51be73
|
Subproject commit 1acb69eb3cf431b9102978c6117144980e8a2939
|
Loading…
Reference in New Issue