aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorpetko <petko@524c5546-5005-0410-9a3e-e25e191bd360>2017-05-31 09:46:39 +0000
committerpetko <petko@524c5546-5005-0410-9a3e-e25e191bd360>2017-05-31 09:46:39 +0000
commit35a9c4109fbbe5b4c999fa3112f976e15544afe7 (patch)
tree9988765fcab40ca4ce994627ee57ef38639b9bf2 /docs
parent9a804ac5e5ce7adc0826029dceb156ec07694909 (diff)
downloadpmwiki.svn-35a9c4109fbbe5b4c999fa3112f976e15544afe7.tar.bz2
Fix alternative bold/italics markup in sample-config.php (PITS:01400).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3263 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'docs')
-rw-r--r--docs/sample-config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sample-config.php b/docs/sample-config.php
index 66e2096d..7a0c753a 100644
--- a/docs/sample-config.php
+++ b/docs/sample-config.php
@@ -130,8 +130,8 @@ include_once("scripts/xlpage-utf-8.php");
## To add support for '*bold*' and '~italic~' markup (the single quotes
## are part of the markup), uncomment the following lines.
## (See PmWiki.CustomMarkup and the Cookbook for details and examples.)
-# Markup("'~", "inline", "/'~(.*?)~'/", "<i>$1</i>"); # '~italic~'
-# Markup("'*", "inline", "/'\\*(.*?)\\*'/", "<b>$1</b>"); # '*bold*'
+# Markup("'~", "<'''''", "/'~(.*?)~'/", "<i>$1</i>"); # '~italic~'
+# Markup("'*", "<'''''", "/'\\*(.*?)\\*'/", "<b>$1</b>"); # '*bold*'
## If you want to have to approve links to external sites before they
## are turned into links, uncomment the line below. See PmWiki.UrlApprovals.