====== Adding Comments to Pages ======
There is a new plug-in, named 'comment', that allows comments to be added to wiki pages but only in the source code. These will not be seen on the rendered pages. They //should not//, however, be visible when you ''view->source'' on the rendered page of course.
You add a comment as follows:
This text will be visible. /* but this will not be seen as it is a comment */ This will be visible too.
Which renders as:
This text will be visible. /* but this will not be seen as it is a comment */ This will be visible too.
Multi-line comments work too:
Some text here ....
/* Fill in whatever you like here and it will not
* be seen by anyone viewing
* the page.
*/
And more text here...
Which renders down to the following:
**Some text here ....
/* Fill in whatever you like here and it will not
* be seen by anyone viewing
* the page.
*/
And more text here...**
Comments can be embedded within other highlighted stuff, such as bold, italic etc.
Enjoy.