diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-06-25 12:28:34 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-06-25 12:28:34 +0000 |
commit | 4914f6e5070d6d065c3843f02a75360d28fbaacb (patch) | |
tree | 90fe8aa5dd43c84bbf710bb68d73366d54c58ba6 | |
parent | 18ab746df928806b93dc558b616fe011f92637d2 (diff) | |
download | pmwiki.svn-4914f6e5070d6d065c3843f02a75360d28fbaacb.tar.bz2 |
PmSyntax (:comment :) add required space.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4730 524c5546-5005-0410-9a3e-e25e191bd360
-rw-r--r-- | pub/guiedit/pmwiki.syntax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pub/guiedit/pmwiki.syntax.js b/pub/guiedit/pmwiki.syntax.js index 57799d27..ca95ea67 100644 --- a/pub/guiedit/pmwiki.syntax.js +++ b/pub/guiedit/pmwiki.syntax.js @@ -65,7 +65,7 @@ ['ptv1', '=meta>punct', /(\(:\w[\w-]*)(:[^\)][\s\S]*?)(:\))/g, /:/], // core meta directives - ['comment', '=comment', /(\(:comment)(.*?)(:\))/gi], + ['comment', '=comment', /(\(:comment) (.*?)(:\))/gi], ['skin', '*meta', /\(:no(left|right|title|action|(group)?(header|footer)) *:\)/gi ], ['meta0', '*meta', /\(:(no)?((link|space)wikiwords|linebreaks|toc) *:\)/gi], ['meta1', '*meta', /\(:(else\d*|if\d*|if\d*end|nl) *:\)/gi], |