From 153517f9624d7f4685343d534f67d320d708e482 Mon Sep 17 00:00:00 2001 From: humano Date: Tue, 27 Nov 2018 09:00:36 -0500 Subject: [PATCH] soporte experiemntal MD en campo notas --- funciones/funciones.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/funciones/funciones.php b/funciones/funciones.php index e2e8e9a..6c059f9 100644 --- a/funciones/funciones.php +++ b/funciones/funciones.php @@ -13762,8 +13762,16 @@ if (mysqli_num_rows($sql)!='0'){ } } elseif($campo_tipo=='2' AND $contenido !=""){ + //$contenido= nl2br("$contenido"); + //$contenido = Markdown($contenido); + //$contenido= nl2br("$contenido"); + $contenido = stripslashes("$contenido"); + $contenido = preg_replace('//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 !=""){ @@ -13776,7 +13784,7 @@ if (mysqli_num_rows($sql)!='0'){ else { $html ="$contenido"; - $contenido = nl2br($html); + //$contenido = nl2br($html); //$contenido = Markdown($contenido); $contenido= $contenido; } @@ -13857,10 +13865,10 @@ if($contenido_original !="") { $resultado .= "
- $campo_nombre[0]: -

$contenido + $campo_nombre[0]:
+ $contenido $metadatos -

+
"; }