---README for "note" plugin version 0.0.1--- This plugin will map a lexer under the "note" tag name. The text between the tags will be displayed as XHTML allowing it to be styled as a note box through the StyleSheet. ---Installation--- Put note.zip in your {wikihome}/plugins directory and restart the webapp context or the server. ---Usage example--- Insert this in a topic body: []This is a notes box test.[] will be translated into the following XHTML string:
Note

This is a notes box test.

Individual styles can be specified in the StyleSheet topic. We suggest you start with: === snip === .note_box { display: table-cell; padding: 0.2em; margin : 0; border : 1px solid #3366ff; -moz-border-radius: 0em 0.5em; border-radius: 0em 0.5em; } .note_boxparent { float : right; clear : both; margin: 0.5em; } .note_boxparent #note_title { display: block; padding: 0.1em 0em 0.1em 0.3em; margin : 0; width : 2.7em; font-weight: bold; font-family: Arial, sans-serif; color: #ffffff; background-color: #3366ff; } === snap === --- Martijn van der Kleijn, (c) 2007 ---