forked from qwerty/milfs
soporte experiemntal MD en campo notas
This commit is contained in:
parent
ae3965fb13
commit
153517f962
@ -13762,8 +13762,16 @@ if (mysqli_num_rows($sql)!='0'){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif($campo_tipo=='2' AND $contenido !=""){
|
elseif($campo_tipo=='2' AND $contenido !=""){
|
||||||
|
//$contenido= nl2br("$contenido");
|
||||||
|
//$contenido = Markdown($contenido);
|
||||||
|
//$contenido= nl2br("$contenido");
|
||||||
|
$contenido = stripslashes("$contenido");
|
||||||
|
$contenido = preg_replace('/<br\s?\/?>/i', "\r\n", "$contenido");
|
||||||
|
$Parsedown = new Parsedown();
|
||||||
|
//$Parsedown->setMarkupEscaped(true);
|
||||||
|
|
||||||
$contenido= nl2br("$contenido");
|
$contenido = $Parsedown->text("$contenido");
|
||||||
|
//$contenido= $contenido_original;
|
||||||
|
|
||||||
}
|
}
|
||||||
elseif(($campo_tipo=='2' OR $campo_tipo=='7' OR $campo_tipo=='1' OR $campo_tipo=='17')AND $contenido !=""){
|
elseif(($campo_tipo=='2' OR $campo_tipo=='7' OR $campo_tipo=='1' OR $campo_tipo=='17')AND $contenido !=""){
|
||||||
@ -13776,7 +13784,7 @@ if (mysqli_num_rows($sql)!='0'){
|
|||||||
|
|
||||||
else {
|
else {
|
||||||
$html ="$contenido";
|
$html ="$contenido";
|
||||||
$contenido = nl2br($html);
|
//$contenido = nl2br($html);
|
||||||
//$contenido = Markdown($contenido);
|
//$contenido = Markdown($contenido);
|
||||||
$contenido= $contenido;
|
$contenido= $contenido;
|
||||||
}
|
}
|
||||||
@ -13857,10 +13865,10 @@ if($contenido_original !="") {
|
|||||||
$resultado .= "
|
$resultado .= "
|
||||||
<div id='contenedor_$row[id_campo]' class=' contenedor_campo '>
|
<div id='contenedor_$row[id_campo]' class=' contenedor_campo '>
|
||||||
<pdata-toc-skip class='campo_contenido tipo_$campo_tipo' id='contenido_$row[id_campo]'>
|
<pdata-toc-skip class='campo_contenido tipo_$campo_tipo' id='contenido_$row[id_campo]'>
|
||||||
<span type= '$campo_tipo' class=' campo_titulo campo_nombre' id='nombre_$row[id_campo]'>$campo_nombre[0]:
|
<span type= '$campo_tipo' class=' campo_titulo campo_nombre' id='nombre_$row[id_campo]'>$campo_nombre[0]:</span><br>
|
||||||
<p class='contenido_item '><b>$contenido</b>
|
<span class='contenido_item '><strong>$contenido</strong>
|
||||||
<span class=' pull-right'> $metadatos </span>
|
<span class=' pull-right'> $metadatos </span>
|
||||||
</p>
|
|
||||||
</div>";
|
</div>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user