[random (length=X) /] insert a random text with length between 0-99 or if length omitted, 8.
[highlight (class="additional class")]text[/highlight] insert a span.highlight around the text.
Sample css:
span.highlight{
background-color:red;
}
span.highlight2{
background-color:cyan;
}
 
[button (class="additional class")]text[/button] insert a link formatted like a button. Use url parameter for the link.
[dropcap (class="additional class")]text[/dropcap] replace a given text formatted like a dropcap.
Sample css:
.dropcap {
display:block;
float:left;
font-size:38px;
line-height:38px;
vertical-align:baseline;
padding-right:5px;
}
 
[quote (class="additional class")]text[/quote] replace a given text formatted like a quote.
Sample css:
.quote {
display:block;
float:left;
width:30%;
margin:20px;
margin-left:0;
padding:5px 0 5px 20px;
font-style:italic;
border-left:3px solid #E8E8E8;
line-heigh:1.5em;
font-size:14px;
letter-spacing: 1px;
word-spacing: 2px;
}
.quote.right{
float:right;
margin-right:0;
margin-left:20px;
}
 
[item (class="additional class"|id=item id|type=div,d,span,s)]text[/item] Insert a html item (type parameter = div or span) around the given text.
Additional class names can be added by the class parameter. Id parameter gives the html an unique css id.
 
[link path="the drupal path" (title="link title"|class="additional class"|id=item id|style=css style rules)]text[/link] inserts an aliased drupal path around the text. You can omit the text and the closing [/link], you gives back the url only.
Additional class names can be added by the class parameter. Id parameter gives the html an unique css id. In the style parameter you can use a css definitions.
 
[coupon (url="http://yoururl.com"|link_text="Click to Reveal Promo Code")]Your Code Message[/coupon] Insert a coupon code item to show the given text.
[node nid=nodeid (class="additional class")/] Embed a node by nid into the text. Additional class names can be added by the class parameter.