Files
Trevor Batley bce7dd054a add contents
2025-10-09 15:04:29 +11:00

99 lines
3.1 KiB
PHP

<?php
/**
*
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Myron Turner <turnermm02@shaw.ca>
*/
// Syntax: <color somecolour/somebackgroundcolour>
// must be run within Dokuwiki
if(!defined('DOKU_INC')) die();
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
/**
* All DokuWiki plugins to extend the parser/rendering mechanism
* need to inherit from this class
*/
class syntax_plugin_ckgedit_font extends DokuWiki_Syntax_Plugin {
function getType(){ return 'formatting'; }
function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }
function getSort(){ return 158; }
function connectTo($mode) { $this->Lexer->addEntryPattern('<font.*?>(?=.*?</font>)',$mode,'plugin_ckgedit_font'); }
function postConnect() { $this->Lexer->addExitPattern('</font>','plugin_ckgedit_font'); }
/**
* Handle the match
*/
function handle($match, $state, $pos, Doku_Handler $handler){
switch ($state) {
case DOKU_LEXER_ENTER :
list($size, $face) = preg_split("/\//u", substr($match, 6, -1), 2);
if(isset($size) && strpos($size,':') !== false) {
list($size,$weight) = explode(':',$size);
$size = "font-size:$size;";
if(isset($weight) && $weight) {
list($weight,$fstyle) = explode(',',$weight);
$size .= " font-weight:$weight; ";
if($fstyle) $size .= " font-style:$fstyle; ";
}
}
else $size = "font-size:$size;";
return array($state, array($size, $face));
case DOKU_LEXER_UNMATCHED : return array($state, $match);
case DOKU_LEXER_EXIT : return array($state, '');
}
return array();
}
/**
* Create output
*/
function render($mode, Doku_Renderer $renderer, $data) {
if($mode == 'xhtml'){
list($state, $match) = $data;
switch ($state) {
case DOKU_LEXER_ENTER :
list($style, $face) = $match;
if(isset($face)) {
list($face,$fg,$bg) = explode(';;',$face);
if(isset($fg)) {
$color = " color: $fg; ";
$style .= $color;
}
if(isset($bg)) {
$color = " background-color: $bg ";
$style .= $color;
}
}
$style = "font-family: $face; $style";
$renderer->doc .= "<span style='$style'>";
break;
case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
case DOKU_LEXER_EXIT : $renderer->doc .= "</span>"; break;
}
return true;
}
return false;
}
}
?>