dolibarr  17.0.4
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  foreach ($replaceimagepath as $key => $val) {
36  $keytoreplace = ']('.$key;
37  $valafter = ']('.$val;
38  $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
39  }
40  }
41  if ($parser == 'parsedown') {
42  include_once DOL_DOCUMENT_ROOT.'/includes/parsedown/Parsedown.php';
43  $Parsedown = new Parsedown();
44  $content = $Parsedown->text($content);
45  } else {
46  $content = nl2br($content);
47  }
48 
49  return $content;
50 }
51 
52 
61 function dolMd2Asciidoc($content, $parser = 'dolibarr', $replaceimagepath = null)
62 {
63  if (is_array($replaceimagepath)) {
64  foreach ($replaceimagepath as $key => $val) {
65  $keytoreplace = ']('.$key;
66  $valafter = ']('.$val;
67  $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
68  }
69  }
70  //if ($parser == 'dolibarr')
71  //{
72  $content = preg_replace('/<!--.*-->/msU', '', $content);
73  //}
74  //else
75  //{
76  // $content = $content;
77  //}
78 
79  return $content;
80 }
dolMd2Asciidoc($content, $parser='dolibarr', $replaceimagepath=null)
Function to parse MD content into ASCIIDOC.
Definition: parsemd.lib.php:61
dolMd2Html($content, $parser='parsedown', $replaceimagepath=null)
Function to parse MD content into HTML.
Definition: parsemd.lib.php:32