dolibarr  13.0.2
parsemd.lib.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2008-2013 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  * or see https://www.gnu.org/
17  */
18 
32 function dolMd2Html($content, $parser = 'parsedown', $replaceimagepath = null)
33 {
34  if (is_array($replaceimagepath))
35  {
36  foreach ($replaceimagepath as $key => $val)
37  {
38  $keytoreplace = ']('.$key;
39  $valafter = ']('.$val;
40  $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
41  }
42  }
43  if ($parser == 'parsedown')
44  {
45  include_once DOL_DOCUMENT_ROOT.'/includes/parsedown/Parsedown.php';
46  $Parsedown = new Parsedown();
47  $content = $Parsedown->text($content);
48  } else {
49  $content = nl2br($content);
50  }
51 
52  return $content;
53 }
54 
55 
64 function dolMd2Asciidoc($content, $parser = 'dolibarr', $replaceimagepath = null)
65 {
66  if (is_array($replaceimagepath))
67  {
68  foreach ($replaceimagepath as $key => $val)
69  {
70  $keytoreplace = ']('.$key;
71  $valafter = ']('.$val;
72  $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
73  }
74  }
75  //if ($parser == 'dolibarr')
76  //{
77  $content = preg_replace('/<!--.*-->/msU', '', $content);
78  //}
79  //else
80  //{
81  // $content = $content;
82  //}
83 
84  return $content;
85 }
dolMd2Html($content, $parser= 'parsedown', $replaceimagepath=null)
Function to parse MD content into HTML.
Definition: parsemd.lib.php:32
dolMd2Asciidoc($content, $parser= 'dolibarr', $replaceimagepath=null)
Function to parse MD content into ASCIIDOC.
Definition: parsemd.lib.php:64