parsemd.lib.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 <http://www.gnu.org/licenses/>.
  16. * or see http://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. {
  34. foreach($replaceimagepath as $key => $val)
  35. {
  36. $keytoreplace = ']('.$key;
  37. $valafter = ']('.$val;
  38. $content = preg_replace('/'.preg_quote($keytoreplace,'/').'/m', $valafter, $content);
  39. }
  40. }
  41. if ($parser == 'parsedown')
  42. {
  43. include_once DOL_DOCUMENT_ROOT.'/includes/parsedown/Parsedown.php';
  44. $Parsedown = new Parsedown();
  45. $content = $Parsedown->text($content);
  46. }
  47. else
  48. {
  49. $content = nl2br($content);
  50. }
  51. return $content;
  52. }