How to parse Markdown in PHP?

后端 未结 5 922
误落风尘
误落风尘 2020-12-23 20:48

First, I know, there already is a Markdown parser for PHP. I also took a look to this question but it doesn\'t answer to my question.

Obviously, even if the title me

5条回答
  •  一生所求
    2020-12-23 21:44

    You should have a look at Parsedown.

    It parses Markdown text the way people do. First, it divides texts into lines. Then it looks at how these lines start and relate to each other. Finally, it looks for special characters to identify inline elements.

提交回复
热议问题