Baike.dev
All toolsTrendingOpen sourceNewsSubmit
Log in
< 返回工具列表
P

parsedown

> 编程语言
开源

Better Markdown Parser in PHP

15.1K stars0 点赞1 次浏览
访问官网GitHub

工具介绍

Better Markdown Parser in PHP

# Parsedown Better Markdown Parser in PHP — demo ## Features - One file - No dependencies - [Super fast](http://parsedown.org/speed) - Extensible - [GitHub flavored](https://github.github.com/gfm) - [Tested](http://parsedown.org/tests/) in PHP 7.1+ - [Markdown Extra extension](https://github.com/erusev/parsedown-extra) ## Installation Install the [composer package]: ```sh composer require erusev/parsedown ``` Or download the [latest release] and include `Parsedown.php` [composer package]: https://packagist.org/packages/erusev/parsedown "The Parsedown package on packagist.org" [latest release]: https://github.com/erusev/parsedown/releases/latest "The latest release of Parsedown" ## Example ```php $Parsedown = new Parsedown(); echo $Parsedown->text('Hello _Parsedown_!'); # prints:

Hello Parsedown!

``` You can also parse inline markdown only: ```php echo $Parsedown->line('Hello _Parsedown_!'); # prints: Hello Parsedown! ``` More examples in [the wiki](https://github.com/erusev/parsedown/wiki/) and in [this video tutorial](http://youtu.be/wYZBY8DEikI). ## Security Parsedown is capable of escaping user-input within the HTML that it generates. Additionally Parsedown will apply sanitisation to additional scripting vectors (such as scripting link destinations) that are introduced by the markdown syntax itself. To tell Parsedown that it is processing untrusted user-input, use the following: ```php $Parsedown->setSafeMode(true); ``` If instead, you wish to allow HTML within untrusted user-input, but still want output to be free from XSS it is recommended that you make use of a HTML sanitiser that allows HTML tags to be whitelisted, like [HTML Purifier](http://htmlpurifier.org/). In both cases you should strongly consider employing defence-in-depth measures, like [deploying a Content-Security-Policy](https://scotthelme.co.uk/content-security-policy-an-introduction/) (a browser security feature) so that your page is likely to be safe even if an attacker finds a vulnerability in one of the first lines of defence above. Safe mode does not necessarily yield safe results when using extensions to Parsedown. Extensions should be evaluated on their own to determine their specific safety against XSS. ## Escaping HTML > WARNING: This method is not safe from XSS! If you wish to escape HTML in trusted input, you can use the following: ```php $Parsedown->setMarkupEscaped(true); ``` Beware that this still allows users to insert unsafe scripting vectors, ex: `[xss](javascript:alert%281%29)`. ## Questions **How does Parsedown work?** It tries to read Markdown like a human. First, it looks at the lines. It’s interested in how the lines start. This helps it recognise blocks. It knows, for example, that if a line starts with a `-` then perhaps it belongs to a list. Once it recognises the blocks, it continues to the content. As it reads, it watches out for special characters. This helps it recognise inline elements (or inlines). We call this approach "line based". We believe that Parsedown is the first Markdown parser to use it. Since the release of Parsedown, other developers have used the same approach to develop other Markdown parsers in PHP and in other languages. **Is it compliant with CommonMark?** It passes most of the CommonMark tests. Most of the tests that don't pass deal with cases that are quite uncommon. Still, as CommonMark matures, compliance should improve. **Who uses it?** [Laravel Framework](https://laravel.com/), [Bolt CMS](http://bolt.cm/), [Grav CMS](http://getgrav.org/), [Herbie CMS](http://www.getherbie.org/), [Kirby CMS](http://getkirby.com/), [October CMS](http://octobercms.com/), [Pico CMS](http://picocms.org), [Statamic CMS](http://www.statamic.com/), [phpDocumentor](http://www.phpdoc.org/), [RaspberryPi.org](http://www.raspberrypi.org/), [Symfony Demo](https://github.com/symfony/demo) and [more](https://packagist.org/packages/erusev/parsedown/dependents). **How can I help?** Use it, star it, share it and if you feel generous, [sponsor me](https://github.com/sponsors/erusev). **What else should I know?** I also make [Nota](https://nota.md/) — a notes app designed for local Markdown files.

核心特点

  • •One file
  • •No dependencies
  • •Super fast
  • •Extensible
  • •GitHub flavored
  • •Tested in PHP 7.1+
  • •Markdown Extra extension

> 标签

PHPmarkdownmarkdown-parserparserphp

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月9日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言
Baike.dev

baike.dev helps you discover great languages, frameworks, databases, DevOps and cloud-native tools.

Quick links

  • Home
  • All tools
  • Trending
  • Open source

About

  • About us
  • Community
  • News

Contribute

Found a great developer tool? Share it with the community.

Submit a tool
© 2026 baike.dev Developer EncyclopediaUpdated daily · Discover great developer tools