parsemd.lib.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. /**
  19. * \file htdocs/core/lib/parsemd.lib.php
  20. * \brief This file contains functions dedicated to MD parsind.
  21. */
  22. /**
  23. * Function to parse MD content into HTML
  24. *
  25. * @param string $content MD content
  26. * @param string $parser 'parsedown' or 'nl2br'
  27. * @param string $replaceimagepath Replace path to image with another path. Exemple: ('doc/'=>'xxx/aaa/')
  28. * @return string Parsed content
  29. */
  30. function dolMd2Html($content, $parser = 'parsedown', $replaceimagepath = null)
  31. {
  32. if (is_array($replaceimagepath)) {
  33. foreach ($replaceimagepath as $key => $val) {
  34. $keytoreplace = ']('.$key;
  35. $valafter = ']('.$val;
  36. $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
  37. }
  38. }
  39. if ($parser == 'parsedown') {
  40. include_once DOL_DOCUMENT_ROOT.'/includes/parsedown/Parsedown.php';
  41. $Parsedown = new Parsedown();
  42. $content = $Parsedown->text($content);
  43. } else {
  44. $content = nl2br($content);
  45. }
  46. return $content;
  47. }
  48. /**
  49. * Function to parse MD content into ASCIIDOC
  50. *
  51. * @param string $content MD content
  52. * @param string $parser 'dolibarr'
  53. * @param string $replaceimagepath Replace path to image with another path. Exemple: ('doc/'=>'xxx/aaa/')
  54. * @return string Parsed content
  55. */
  56. function dolMd2Asciidoc($content, $parser = 'dolibarr', $replaceimagepath = null)
  57. {
  58. if (is_array($replaceimagepath)) {
  59. foreach ($replaceimagepath as $key => $val) {
  60. $keytoreplace = ']('.$key;
  61. $valafter = ']('.$val;
  62. $content = preg_replace('/'.preg_quote($keytoreplace, '/').'/m', $valafter, $content);
  63. }
  64. }
  65. //if ($parser == 'dolibarr')
  66. //{
  67. $content = preg_replace('/<!--.*-->/msU', '', $content);
  68. //}
  69. //else
  70. //{
  71. // $content = $content;
  72. //}
  73. return $content;
  74. }