diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-02-11 08:57:37 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-02-11 08:57:37 +0000 |
commit | 2a8c5e06a25c6d22dacfa961853bdd6ae6be7d21 (patch) | |
tree | 4f9ccb6486335749a5b0188533a59a4a90bdcf82 /scripts | |
parent | 0b877960906f799b22a912aefffd658e271ca0f0 (diff) | |
download | pmwiki.svn-2a8c5e06a25c6d22dacfa961853bdd6ae6be7d21.tar.bz2 |
$WikiStyleCSS add columns.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4631 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/wikistyles.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/wikistyles.php b/scripts/wikistyles.php index c4f349e3..8b7a3461 100644 --- a/scripts/wikistyles.php +++ b/scripts/wikistyles.php @@ -1,5 +1,5 @@ <?php if (!defined('PmWiki')) exit(); -/* Copyright 2004-2015 Patrick R. Michaud (pmichaud@pobox.com) +/* Copyright 2004-2024 Patrick R. Michaud (pmichaud@pobox.com) This file is part of PmWiki; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -44,6 +44,7 @@ if (IsEnabled($EnableStdWikiStyles,1)) { 'float|clear|display|(margin|padding|border)(-(left|right|top|bottom))?'; $WikiStyleCSS[] = 'white-space'; $WikiStyleCSS[] = '((min|max)-)?(width|height)'; + $WikiStyleCSS[] = 'columns|column-(rule|span|gap|width|count|fill)'; ## list-styles $WikiStyleCSS[] = 'list-style'; foreach(array('decimal'=>'decimal', 'roman'=>'lower-roman', |