Revision history for MetaActionInfo


Revision [2405]

Last edited on 2016-05-12 20:44:46 by BrianKoontz [redirect to MetaTagActionInfo page]
Additions:
{{redirect to="MetaTagActionInfo"}}
Deletions:
{{redirect MetaTagActionInfo}}


Revision [2404]

Edited on 2016-05-12 20:43:51 by BrianKoontz [redirected to MetaTagActionInfo page]
Additions:
{{redirect MetaTagActionInfo}}
Deletions:
=====Meta Action Documentation=====
This is the documentation page for the ##meta## action.

===Documentation===
{{since version="1.3.7" align="left"}}

==Short description==
Renders an HTML meta tag in the page output header.

==Usage:==
##""{{meta name="somename" content="blah blah blah"}}""##

|?|Parameters||
|[|
|=|name|=|type|=|required?|=|default|=|description||
|#|
|=|name||string||mandatory||-||value of the name attribute of the meta tag||
|=|content||string||mandatory||-||value of the content attribute of the meta tag||

==Long description==
With ##""{{meta}}""## action you can create one or more HTML meta tags that will appear in the page output header. Multiple invocations of ##""{{meta}}""## will produce multiple meta tags. Position of the meta tags within the ""<head>...</head>"" tags is not guaranteed or predictable.

==Examples:==
##""{{meta name="somename" content="blah blah blah"}}""##

produces the following output:

%%(html)
<head>
...
<meta name="somename" content="blah blah blah" />
...
</head>
%%

==Release Notes==
- {{since version="1.3.7" display="inline"}} Introduction

==Authors==
- [[http://wikkawiki.org/BrianKoontz | Brian Koontz]]

----
CategoryEN


Revision [2395]

Edited on 2015-06-30 19:27:04 by BrianKoontz [Minor typo]
Additions:
%%


Revision [2394]

Edited on 2015-06-30 19:26:41 by BrianKoontz [Initial page]
Additions:
=====Meta Action Documentation=====
This is the documentation page for the ##meta## action.
{{since version="1.3.7" align="left"}}
Renders an HTML meta tag in the page output header.
##""{{meta name="somename" content="blah blah blah"}}""##
|=|name||string||mandatory||-||value of the name attribute of the meta tag||
|=|content||string||mandatory||-||value of the content attribute of the meta tag||
With ##""{{meta}}""## action you can create one or more HTML meta tags that will appear in the page output header. Multiple invocations of ##""{{meta}}""## will produce multiple meta tags. Position of the meta tags within the ""<head>...</head>"" tags is not guaranteed or predictable.
##""{{meta name="somename" content="blah blah blah"}}""##
produces the following output:
%%(html)
<head>
...
<meta name="somename" content="blah blah blah" />
...
</head>
- {{since version="1.3.7" display="inline"}} Introduction
- [[http://wikkawiki.org/BrianKoontz | Brian Koontz]]
Deletions:
=====Color/ Colour Action Documentation=====
This is the documentation page for the ##color##/##colour## action(s).
>>**See also**
[[http://wikkawiki.org/ColorAction Development page]]
>>
{{since version="1.1.6.1" align="left"}}
Renders a string as colored text.
##""{{color [text="This is my text"] [fg="red"] [bg="black"]}}""##
|=|text||string||mandatory||-||the text you want to display colored||
|=|bg||string||optional||-||{{since version="1.1.6.2" display="inline"}} color name or hex-value for the background||
|=|fg||string||optional||-||{{since version="1.1.6.2" display="inline"}} foreground color, alias for ##c##, introduced to fit with ##bg## ||
|=|c||string||optional||-||(html) color name or hex-value for the text||
|=|hex||string||optional||-||alias for ##c##, kept for backwards-compatibility;||
|?|Color names||
|=|{width:80px}name|=|{width:50px}color||
||aqua||{background-color:aqua}||
||black||{background-color:black}||
||blue||{background-color:blue}||
||fuchsia||{background-color:fuchsia}||
||gray||{background-color:gray}||
||green||{background-color:green}||
||lime||{background-color:lime}||
||maroon||{background-color:maroon}||
||navy||{background-color:navy}||
||olive||{background-color:olive}||
||purple||{background-color:purple}||
||red||{background-color:red}||
||silver||{background-color:silver}||
||teal||{background-color:teal}||
||white||{background-color:white}||
||yellow||{background-color:yellow}||
With ##""{{color}}""## action (or its alias ##""{{colour}}""##) you can specify text color using either one of HTML defined names or a hex value (with the former one taking priority). An optional background color can also be specified. Note that you must specify a text and either use "fg", "c" or "hex" for the color.
##""{{color c="green" text="This is a test."}}""##
{{color c="green" text="This is a test."}}
If you want to use hex values:
##""{{color hex="#DD0000" text="This is another test."}}""##
{{color hex="#DD0000" text="This is another test."}}
Alternatively, you can specify a foreground and background color using the ##fg## and ##bg## parameters (they accept both named and hex values):
##""{{color fg="#FF0000" bg="#000000" text="This is colored text on colored background"}}""##
{{color fg="#FF0000" bg="#000000" text="This is colored text on colored background"}}
##""{{color fg="yellow" bg="black" text="This is colored text on colored background"}}""##
{{color fg="yellow" bg="black" text="This is colored text on colored background"}}
- Versions **1.1.6.1** and below had support for parameters ##text##, ##c## and ##hex## only, and no check were performed about these values.
- {{since version="1.1.6.2" display="inline"}} two new parameters ##bg## and ##fg## have been introduced, and the colors are checked for validity. RGB syntax, Hex syntax and a wide range of color names are supported.
- {{since version="1.1.6.4" display="inline"}} support for a number of invalid colornames, such as ##antiquewhite##, ##lightgreen##, ... has been discontinued. Although these colornames are supported by almost every known browser, they do not validate against the CSS specification. Currently supported colornames are: ##aqua##, ##black##, ##blue##, ##fuchsia##, ##gray##, ##green##, ##lime##, ##maroon##, ##navy##, ##olive##, ##purple##, ##red##, ##silver##, ##teal##, ##white## and ##yellow##.
- [[http://www.mornography.de/ | Hendrik Mans]]
- [[http://wikkawiki.org/NilsLindenberg | Nils Lindenberg]] (modifications)
- [[http://wikkawiki.org/DotMG | Mahefa Randimbisoa]] (modification - RGB syntax)


Revision [2393]

The oldest known version of this page was created on 2015-06-30 19:20:16 by BrianKoontz [Initial page]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki