summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/plugins/color.mdwn23
-rw-r--r--doc/style.css4
-rw-r--r--doc/todo/color_plugin.mdwn2
3 files changed, 29 insertions, 0 deletions
diff --git a/doc/plugins/color.mdwn b/doc/plugins/color.mdwn
new file mode 100644
index 000000000..a5100d8de
--- /dev/null
+++ b/doc/plugins/color.mdwn
@@ -0,0 +1,23 @@
+\[[!template id=plugin name=color core=0 author="[[ptecza]]"]]
+
+This plugin can be used to color a piece of text on a page.
+It can be used to set the foreground and/or background color of the text.
+
+You can use a color name (e.g. `white`) or HTML code (e.g. `#ffffff`)
+to define colors.
+
+## examples
+
+Here the foreground color is defined as a word, while the background color
+is defined as a HTML color code:
+
+ \[[!color foreground=white background=#ff0000 text="White text on red background"]]
+
+The background color is missing, so the text is displayed on default
+background:
+
+ \[[!color foreground=white text="White text on default color background"]]
+
+The foreground is missing, so the text has the default foreground color:
+
+ \[[!color background=#ff0000 text="Default color text on red background"]]
diff --git a/doc/style.css b/doc/style.css
index 781f2b389..2e6cdee07 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -348,3 +348,7 @@ legend {
background: #eee;
color: black !important;
}
+
+span.color {
+ padding: 2px;
+}
diff --git a/doc/todo/color_plugin.mdwn b/doc/todo/color_plugin.mdwn
index e1aa5daa2..69afe837d 100644
--- a/doc/todo/color_plugin.mdwn
+++ b/doc/todo/color_plugin.mdwn
@@ -227,3 +227,5 @@ Of course, I'm open for discussion or exchange of ideas :) --[[Paweł|ptecza]]
+span.color {
+ padding: 2px;
+}
+
+[[done]]