This repository has been archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
markdown_options.php
457 lines (397 loc) · 13.1 KB
/
markdown_options.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<?php
/**
* Fonctions utiles au plugin Markdown
*
* @plugin Markdown
* @copyright 2014
* @author Cédric
* @licence GNU/GPL
* @package SPIP\Markdown\Fonctions
*/
if (!defined('_ECRIRE_INC_VERSION')) return;
// s'inserer a la fin de pre_propre et post propre
$GLOBALS['spip_pipeline']['pre_propre'] = (isset($GLOBALS['spip_pipeline']['pre_propre'])?$GLOBALS['spip_pipeline']['pre_propre']:'').'||markdown_pre_propre';
$GLOBALS['spip_pipeline']['post_propre'] = (isset($GLOBALS['spip_pipeline']['post_propre'])?$GLOBALS['spip_pipeline']['post_propre']:'').'||markdown_post_propre';
$GLOBALS['spip_pipeline']['post_typo'] = (isset($GLOBALS['spip_pipeline']['post_propre'])?$GLOBALS['spip_pipeline']['post_propre']:'').'||markdown_post_typo';
function markdown_syntaxe_defaut(){
static $syntaxe_defaut = null;
if (is_null($syntaxe_defaut)){
// lever un flag pour dire que ce pipeline est bien OK
if (!defined('_pre_echappe_html_propre_ok'))
define('_pre_echappe_html_propre_ok',true);
// on peut forcer par define, utile pour les tests unitaires
if (defined('_MARKDOWN_SYNTAXE_PAR_DEFAUT'))
$syntaxe_defaut = _MARKDOWN_SYNTAXE_PAR_DEFAUT;
else {
include_spip('inc/config');
$syntaxe_defaut = lire_config("markdown/syntaxe_par_defaut","spip");
}
}
return $syntaxe_defaut;
}
function markdown_pre_echappe_html_propre($texte){
// si syntaxe par defaut est markdown et pas de <md> dans le texte on les introduits
if (markdown_syntaxe_defaut()==="markdown"
// est-ce judicieux de tester cette condition ?
AND strpos($texte,"<md>")===false
){
$texte = str_replace(array("<spip>","</spip>"),array("</md>","<md>"),$texte);
$texte = "<md>$texte</md>";
$texte = str_replace("<md></md>","",$texte);
}
if (strpos($texte,"<md>")!==false){
$texte = echappe_html($texte,"mdblocs",false,',<(md)(\s[^>]*)?'.'>(.*)</\1>,UimsS');
}
return $texte;
}
/**
* fonction appelee par echappe_html sur les balises <md></md>
*
* @param array $regs
* @return string
*/
function traiter_echap_md_dist($regs){
// echapons le code dans le markdown
$texte = markdown_echappe_code($regs[3]);
$texte = markdown_echappe_liens($texte);
$texte = markdown_echappe_del($texte);
$texte = markdown_echappe_setext($texte);
return "<md".$regs[2].">$texte</md>";
}
/**
* Echapper les blocs de code dans le MarkDown
* @param $texte
* @return string
*/
function markdown_echappe_code($texte){
$texte = echappe_retour($texte);
// tous les paragraphes indentes par 4 espaces ou une tabulation
// mais qui ne sont pas la suite d'une liste ou d'un blockquote
if (strpos($texte, " ") !== false or strpos($texte, "\t") !== false) {
preg_match_all(",(^( |\t|\* |\+ |- |> |\d+\.)([^\n]*)$(\s*^( +|\t).*$)*?),Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
if (!strlen(trim($match[2]))){
#var_dump($match[0]);
$p = strpos($texte,$match[0]);
$texte = substr_replace($texte,code_echappement($match[0], 'md', true),$p,strlen($match[0]));
}
}
}
if (strpos($texte,"```")!==false OR strpos($texte,"~~~")!==false){
$texte = echappe_html($texte,'md',true,',^(```|~~~)\w*?\s.*\s(\1),Uims');
}
if (strpos($texte,"``")!==false){
$texte = echappe_html($texte,'md',true,',``.*``,Uims');
}
if (strpos($texte,"`")!==false){
$texte = echappe_html($texte,'md',true,',`.*`,Uims');
}
// escaping
if (strpos($texte,"\\")!==false){
$texte = echappe_html($texte,'md',true,',\\\\[\\`*_{}\[\]\(\)>+.!-~],Uims');
}
return $texte;
}
/**
* Echapper les ~~ qui sont transformes en <del> par MarkDown
* mais en par la typo SPIP qui passe avant si on laisse tel quel
* @param string $texte
* @return string
*/
function markdown_echappe_del($texte){
if (strpos($texte,"~~")!==false){
$texte = echappe_html($texte,'md',true,',~~,Uims');
}
return $texte;
}
/**
* Echapper les -- qui servent a reperer un titre dans la convention setext
* mais sont transformes en — par spip
* @param string $texte
* @return string
*/
function markdown_echappe_setext($texte){
if (strpos($texte," --")!==false){
$texte = echappe_html($texte,'md',true,',^ ? ?--\s,Uims');
}
return $texte;
}
/**
* Echapper les raccourcis de type lien dans MarkDown
* pour proterger les morceaux qui risquent d'etre modifies par la typo SPIP
* (URL, :,...)
* @param string $texte
* @return string
*/
function markdown_echappe_liens($texte){
//[blabla](http://...) et ![babla](http://...)
if (strpos($texte,"](")!==false){
// D'abord les images ![babla](http://...)
// qui peuvent etre embarquees dans un lien
if (strpos($texte,"![")!==false){
preg_match_all(",([!]\[[^\]]*\])(\([^)]*\)),Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
#var_dump($match);
$p = strpos($texte,$match[0]);
$ins = code_echappement("![", 'md', true)
.substr($match[1],2,-1)
.code_echappement("]", 'md', true)
.code_echappement($match[2], 'md', true);
$texte = substr_replace($texte,$ins,$p,strlen($match[0]));
}
}
// Puis les liens [blabla](http://...)
preg_match_all(",(\[[^\]]*\])(\([^)]*\)),Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
#var_dump($match);
$p = strpos($texte,$match[0]);
$pre = $match[1];
if (strncmp($pre,"!",1)==0){
$pre = code_echappement("!", 'md', true).substr($pre,1);
}
$texte = substr_replace($texte,$pre.code_echappement($match[2], 'md', true),$p,strlen($match[0]));
}
}
// [blabla]: http://....
if (strpos($texte,"[")!==false){
preg_match_all(",^(\s*\[[^]]*\])(:[ \t]+[^\s]*(\s+(\".*\"|'.*'|\(.*\)))?)\s*$,Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
#var_dump($match);
$p = strpos($texte,$match[0])+strlen($match[1]);
$texte = substr_replace($texte,code_echappement($match[2], 'md', true),$p,strlen($match[2]));
}
}
// ![Markdown Logo][image]
if (strpos($texte,"![")!==false){
preg_match_all(",^(!\[[^]]*\])(\[[^]]*\])$,Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
#var_dump($match);
$p = strpos($texte,$match[0]);
$texte = substr_replace($texte,code_echappement("!", 'md', true),$p,1);
}
}
// les autoliens si option pour utiliser l'autolien MD plutot que l'autolien SPIP
if (defined('_MARKDOWN_PRESERVE_AUTOLIENS')) {
if (!defined('_SPIP_EXTRAIRE_LIENS')) {
define('_SPIP_EXTRAIRE_LIENS', ',' . '\[[^\[\]]*(?:<-|->).*?\]' . '|<a\b.*?</a\b' . '|<\w.*?>' . '|((?:https?:/|www\.)[^"\'\s\[\]\}\)<>]*)' .',imsS');
}
preg_match_all(_SPIP_EXTRAIRE_LIENS,$texte,$matches,PREG_SET_ORDER);
foreach($matches as $match){
if (count($match)>1){
#var_dump($match);
$p = strpos($texte,$match[0]);
$texte = substr_replace($texte,code_echappement($match[0], 'md', true),$p,strlen($match[0]));
}
}
}
// <http://...>
$texte = echappe_html($texte,'md',true,',' . '<https?://[^<]*>'.',UimsS');
return $texte;
}
/**
* Avant le traitemept typo et liens :
* - des-echapper les blocs <md> qui ont ete echappes au tout debut
*
* @param string $texte
* @return string
*/
function markdown_pre_liens($texte){
// si pas de base64 dans le texte, rien a faire
if (strpos($texte,"base64mdblocs")!==false) {
// il suffit de desechapper les blocs <md> (mais dont on a echappe le code)
$texte = echappe_retour($texte,'mdblocs');
}
// ici on a le html du code SPIP echappe, mais sans avoir touche au code MD qui est echappe aussi
return $texte;
}
/**
* Pre typo : Rien a faire on dirait
* @param string $texte
* @return string
*/
function markdown_pre_typo($texte){
return $texte;
}
/**
* Post typo : retablir les blocs de code dans le MarkDown
* qui ont ete echappes en pre-liens
* La on retrouve tout le contenu MarkDown initial, qui a beneficie des corrections typo
* @param string $texte
* @return string
*/
function markdown_post_typo($texte){
if (strpos($texte,"<md>")!==false){
$texte = echappe_retour($texte,"md");
}
return $texte;
}
/**
* Pre-propre : traiter les raccourcis markdown
* @param string $texte
* @return string
*/
function markdown_pre_propre($texte){
if (!class_exists("Parsedown")){
include_once _DIR_PLUGIN_MARKDOWN."lib/parsedown/Parsedown.php";
}
$mes_notes = "";
// traiter les notes ici si il y a du <md> pour avoir une numerotation coherente
if (strpos($texte,"<md>")!==false
AND strpos($texte,"[[")!==false){
$notes = charger_fonction('notes', 'inc');
// Gerer les notes (ne passe pas dans le pipeline)
list($texte, $mes_notes) = $notes($texte);
}
$texte = markdown_filtre_portions_md($texte,"markdown_raccourcis");
if ($mes_notes)
$notes($mes_notes,'traiter');
return $texte;
}
/**
* Appliquer un filtre aux portions <md>...</md> du texte
* utilise dans pre_propre()
*
* @param string $texte
* @param string $filtre
* @return string
*/
function markdown_filtre_portions_md($texte,$filtre){
if (strpos($texte,"<md>")!==false){
preg_match_all(",<md>(.*)</md>,Uims",$texte,$matches,PREG_SET_ORDER);
foreach($matches as $m){
$t = $filtre($m[1]);
$p = strpos($texte,$m[1]);
$texte = substr_replace($texte,$t,$p-4,strlen($m[1])+9);
}
}
return $texte;
}
/**
* Appliquer Markdown sur un morceau de texte
* @param $texte
* @return string
*/
function markdown_raccourcis($texte){
$md = $texte;
// marquer les ul/ol explicites qu'on ne veut pas modifier
if (stripos($md,"<ul")!==false OR stripos($md,"<ol")!==false OR stripos($md,"<li")!==false)
$md = preg_replace(",<(ul|ol|li)(\s),Uims","<$1 html$2",$md);
// parser le markdown
$md = Parsedown::instance()->parse($md);
// class spip sur ul et ol et retablir les ul/ol explicites d'origine
$md = str_replace(array("<ul>","<ol>","<li>"),array('<ul'.$GLOBALS['class_spip_plus'].'>','<ol'.$GLOBALS['class_spip_plus'].'>','<li'.$GLOBALS['class_spip'].'>'),$md);
$md = str_replace(array("<ul html","<ol html","<li html"),array('<ul','<ol','<li'),$md);
// Si on avait des <p class="base64"></p> les repasser en div
// et reparagrapher car MD n'est pas tres fort et fait de la soupe <p><div></div></p>
if (strpos($md,'<span div class="base64')!==false or strpos($md,'<div class="base64')!==false){
$md = preg_replace(",(<span div (class=\"base64[^>]*>)</span>),Uims","<div \\2</div>",$md);
$md = str_replace('<li>','<li><p>', $md);
$md = str_replace("\n\n","\n\n<p>", $md);
$md = paragrapher($md);
// pas d'autobr introduit par paragrapher
if (_AUTOBR AND strpos($md,_AUTOBR)!==false){
$md = str_replace(_AUTOBR,'',$md);
}
// eviter les >\n\n<p : un seul \n
if (strpos($md,">\n\n<p")!==false){
$md = str_replace(">\n\n<p",">\n<p",$md);
}
}
// echapper le markdown pour que SPIP n'y touche plus
return code_echappement($md,"md",false,"div");
}
/**
* @param $texte
* @return string
*/
function markdown_post_propre($texte){
static $hreplace=null;
static $hmini=null;
if (is_null($hreplace)){
$hreplace = false;
// on peut forcer par define, utile pour les tests unitaires
if (defined('_MARKDOWN_HMINI'))
$hmini = _MARKDOWN_HMINI;
else {
include_spip('inc/config');
$hmini = lire_config("markdown/hmini",1);
}
if ($hmini>1){
$hreplace = array();
for ($i=5;$i>=1;$i--){
$ir = min($i+1,6);
$hreplace[1]["<h$i"] = "<h$ir";
$hreplace[1]["</h$i"] = "</h$ir";
$ir = min($i+2,6);
$hreplace[2]["<h$i"] = "<h$ir";
$hreplace[2]["</h$i"] = "</h$ir";
}
}
}
// blocs <md></md> echappes
if (strpos($texte,'<div class="base64md')!==false){
$texte = echappe_retour($texte,"md");
}
// la globale $GLOBALS['markdown_inh_hreplace'] permet d'inhiber le replace
// utilisee dans le titrage automatique
if (!isset($GLOBALS['markdown_inh_hreplace'])
AND $hreplace AND strpos($texte,"</h")!==false){
// si on veut h3 au plus haut et qu'il y a des h1, on decale de 2 vers le bas
if ($hmini==3 AND strpos($texte,"</h1")){
$texte = str_replace(array_keys($hreplace[2]),array_values($hreplace[2]),$texte);
}
// sinon si on veut h2 et qu'il y a h1 ou si on veut h3 et qu'il y a h2, on decale de 1 vers le bas
elseif ( ($hmini==2 AND strpos($texte,"</h1"))
OR ($hmini==3 AND strpos($texte,"</h2")) ){
$texte = str_replace(array_keys($hreplace[1]),array_values($hreplace[1]),$texte);
}
}
return $texte;
}
/**
* Parser du markdown
*
* @param string $texte
* @return string
*/
function markdown_propre($texte){
if (markdown_syntaxe_defaut()==="spip"){
$texte = "<md>$texte</md>";
}
return propre($texte);
return $texte;
}
/**
* Determiner un titre automatique,
* a partir des champs textes de contenu
*
* @param array $champs_contenu
* liste des champs contenu textuels
* @param array|null $c
* tableau qui contient les valeurs des champs de contenu
* si null on utilise les valeurs du POST
* @param int $longueur
* longueur de coupe
* @return string
*/
function inc_titrer_contenu($champs_contenu, $c=null, $longueur=80){
// prendre la concatenation des champs texte
$t = "";
foreach($champs_contenu as $champ){
$t .= _request($champ,$c)."\n\n";
}
if ($t){
$GLOBALS['markdown_inh_hreplace'] = true;
include_spip("inc/texte");
$t = propre($t);
unset($GLOBALS['markdown_inh_hreplace']);
if (strpos($t,"</h1>")!==false
AND preg_match(",<h1[^>]*>(.*)</h1>,Uims",$t,$m)){
$t = $m[1];
}
else {
$t = couper($t,$longueur,"...");
}
}
return $t;
}