Learn about DokuWiki
Advanced Use
Corporate Use
Our Community
Follow us on Facebook, Twitter and other social networks.
Learn about DokuWiki
Advanced Use
Corporate Use
Our Community
Follow us on Facebook, Twitter and other social networks.
This is an old revision of the document!
Compatible with DokuWiki
Allow to use source comment syntax to leave edit instructions of the page. Comments are visible only in the source view, not rendered as any page elements.
Similar to comment, commentsrc, wrap
Tagged with comment
Search and install the plugin using the Extension Manager. Refer to Plugins on how to install plugins manually.
The Comment Syntax plugin brings a CSS-like comment syntax to your DokuWiki. The comment is not shown in the page, but visible when you edit the page.
Comments are used to explain your Wiki source text, and may help you when you edit it, especially which is using complex syntax markups, at some future. Comments are ignored when converting source text to html.
'C' style comments start with /*
and ends with */
. The comment-start markup /*
must be placed at the start of line, or after a white-space letter. Comments can also span multiple lines:
/* This is a comment */
/* This is a multi-line comment */
The comment syntax mode has priority to list block mode. You may comment-out some list item without breaking the whole list structure.
- item 1 /* A white space is necessary before comment-start markup */ /*- item 2 will be eliminated from this list without breaking it */ - item 3 /* will be numbered as 2 in the list */
Note that 'C' style comments end at the first */
encountered. If you however wish that nested comments should be treated correctly, you can change the behavior through the configuration. In case the use_cstyle_nest
option is enabled (default off), the whole part enclosed in outmost pair of /*
and */
recognized as a comment:
/* There is an another comment /* in this comment */ (nested comment)*/
The “one-line” comment syntax will be available if the use_oneline_style
option is enabled (default off).
* non-ordered list item // comment
- item 1 // A white space is necessary before One-line comment markup //- item 2 will be eliminated from this list without breaking it - item 3 // will be numbered as 2 in the list
Adverse effect: The one-line comment syntax
//
may interfere with the markup for italics. The use of italic formatting markup //...//
will be restricted so that it can not go over next line.
This text //in italics. is rendered as normal // due to broken double-slash pairs
This text is rendered as normal
There are so-called control macros syntax, such as ~~NOCACHE~~
. It may be convenient if you put a white space between ~~
and NOCACHE~~
, it becomes a comment without displaying ~~ NOCACHE~~
in the page.
~~ This is a comment without affecting other macros in the page. ~~
plugin name | mode type | regular expressions | |
---|---|---|---|
comment | substition | special pattern | ^/\*.*?\*|\s+/\*.*?\*/ |
commentsrc | substition | special pattern | !-.*-! |
commentsyntax | protected | entry pattern | [ \t]*\n?/\*(?=.*?\*/) |
exit pattern | \*/ |
||
substition | special pattern | \s//(?:[^/\n]*|[^/\n]*/[^/\n]*)(?=\n) |
|
substition | special pattern | ~~[^\r\n]+?~~ |
Is there plans to fix the current issues?
Which issues? There are none listed here nor in the bug tracker. — Anika Henke 2016-07-31 15:42