dolibarr 18.0.6
|
This file contains functions dedicated to MD parsing. More...
Go to the source code of this file.
Functions | |
dolMd2Html ($content, $parser='parsedown', $replaceimagepath=null) | |
Function to parse MD content into HTML. | |
dolMd2Asciidoc ($content, $parser='dolibarr', $replaceimagepath=null) | |
Function to parse MD content into ASCIIDOC. | |
This file contains functions dedicated to MD parsing.
Definition in file parsemd.lib.php.
dolMd2Asciidoc | ( | $content, | |
$parser = 'dolibarr', | |||
$replaceimagepath = null ) |
Function to parse MD content into ASCIIDOC.
string | $content | MD content |
string | $parser | 'dolibarr' |
string | $replaceimagepath | Replace path to image with another path. Exemple: ('doc/'=>'xxx/aaa/') |
Definition at line 70 of file parsemd.lib.php.
Referenced by Utils\generateDoc().
dolMd2Html | ( | $content, | |
$parser = 'parsedown', | |||
$replaceimagepath = null ) |
Function to parse MD content into HTML.
string | $content | MD content |
string | $parser | 'parsedown' or 'nl2br' |
string | $replaceimagepath | Replace path to image with another path. Exemple: ('doc/'=>'xxx/aaa/') |
Definition at line 32 of file parsemd.lib.php.
Referenced by DolibarrModules\getChangeLog(), and DolibarrModules\getDescLong().