php Parsedown - Markdown_to_HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Parsedown - Markdown_to_HTML相关的知识,希望对你有一定的参考价值。

$folder_items = new FilesystemIterator(__DIR__, FilesystemIterator::SKIP_DOTS);
printf("There were %d Files", iterator_count($folder_items));
function markdown_to_html($file)
{
  if (!file_exists($file))
    return;

  require_once('Parsedown.php');

  $markdown = new Parsedown();
  return $markdown->text(file_get_contents($file));
}
$html = markdown_to_html('README.md');

echo $html;

以上是关于php Parsedown - Markdown_to_HTML的主要内容,如果未能解决你的问题,请参考以下文章

Markdow的使用

Markdow常用基础语法

vscode编辑器markdow文档导出为pdf

vscode编辑器markdow文档导出为pdf

Markdow流程图制作教程

你想要的资源都在这里,快点进去(PHP资源大全第五篇)