diff options
author | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2007-03-26 16:26:39 +0000 |
---|---|---|
committer | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2007-03-26 16:26:39 +0000 |
commit | 145fd386ae44cd0dcf7f638734a2a3b1601ebf34 (patch) | |
tree | 7e12a0b5db51384dffbf16554d2455e4a6ef232a /docs | |
parent | 03ac6f60430f5fcbac45ab772e1c2f63c8a85bf8 (diff) | |
download | pmwiki.svn-145fd386ae44cd0dcf7f638734a2a3b1601ebf34.tar.bz2 |
Add $EnableWSPre.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@1962 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample-config.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/sample-config.php b/docs/sample-config.php index 7caf67cd..95d50152 100644 --- a/docs/sample-config.php +++ b/docs/sample-config.php @@ -51,6 +51,14 @@ $WikiTitle = 'PmWiki'; ## (http://www.wikicreole.org/), include it here: # include_once('scripts/creole.php'); +## Some sites may want leading spaces on markup lines to indicate +## "preformatted text blocks", set $EnableWSPre=1 if you want to do +## this. Setting it to a higher number increases the number of +## space characters required on a line to count as "preformatted text". +# $EnableWSPre = 0; # PmWiki 2.2.0 default (disabled) +# $EnableWSPre = 1; # lines beginning with space are preformatted +# $EnableWSPre = 4; # lines with 4 spaces are preformatted + ## If you want uploads enabled on your system, set $EnableUpload=1. ## You'll also need to set a default upload password, or else set ## passwords on individual groups and pages. For more information |