|
<?php
|
|
|
|
// Sécurité
|
|
if (!defined('_ECRIRE_INC_VERSION')) {return;}
|
|
|
|
$GLOBALS['z_blocs'] = array('content', 'head', 'head_js', 'header', 'footer');
|
|
|
|
$GLOBALS['spip_pipeline']['affichage_final'] .= '|tinytypo';
|
|
function tinytypo($texte) {
|
|
$texte = str_replace('hr class="spip"', 'hr', $texte);
|
|
$texte = str_replace('spip_out', 'external', $texte);
|
|
$texte = str_replace('spip_url', 'external', $texte);
|
|
$texte = str_replace('spip_mail', 'mailto', $texte);
|
|
$texte = str_replace('blockquote class="spip"', 'blockquote', $texte);
|
|
$texte = str_replace('<table class="spip', '<table class="table spip', $texte);
|
|
return $texte;
|
|
}
|