PmWikiStyles
In PmWiki werden Styes mit %...% (lokal) oder >>....<< für einen grösseren Bereich benutzt. Im farmconfig.php kann man wiki-weite Styles definieren. Ich habe folgendes definiert:
>>a<< Anmerkung oder Annotation >><< leerer Style = default >>c<<Block \ '''mit''' WikiInterpretation und Umbruch >><< leerer Style = default >>c<< [@ Block mit [ @ ... @ ] für Code in fixFont '''ohne''' wiki Interpretation @] | Anmerkung oder Annotation
leerer Style = default
Block mit WikiInterpretation und Umbruch
leerer Style = default
Block mit [ @ ... @ ] für Code in fixFont '''ohne''' wiki Interpretation
|
Die Definitionen in farmconfig.php sind
$WikiStyle['a'] = array('class' => 'indent', 'color' => 'green', 'font-style' => 'italic'); $WikiStyle['c'] = array('class' => 'indent', 'background-color' => '#d0ffd0'); $WikiStyle['l'] = array('class' => 'frame rfloat', 'background-color' => '#e0e0ff', 'font-size' => 'smaller'); #links
damit
preformated text mit pmwikimarkups
und co'''de'''
automatisch grün hinterlegt aber nicht escap'''ed'' text habe ich im StyleSheet
/media/wkData/www/wikifarm/pub/skins/pmwiki/pmwiki.cssdie Zeile
code, pre { background-color: #d0ffd0; } div.sectionedit {background-color: #e0e0ff;;font-size:smaller;clear:none;float:right}
eingefügt. Die untere, damit das SectionEdit ähnlich wie styl l aussieht
Achtung! css stylesheets ignorieren Fehler, z.B. colour statt color keine Fehlermeldung aber auch keine Wirkung!