Awesome
Markdownify
The HTML to Markdown converter for PHP
Code example | How to Install | How to Contribute | Author & Community
Code example
Markdown
$converter = new Markdownify\Converter;
$converter->parseString('<h1>Heading</h1>');
// Returns: # Heading
Markdown Extra as defined by @michelf
$converter = new Markdownify\ConverterExtra;
$converter->parseString('<h1 id="md">Heading</h1>');
// Returns: # Heading {#md}
How to Install
This library package requires PHP 5.4
or later.<br>
Install Composer and run the following command to get the latest version:
composer require pixel418/markdownify
How to Contribute
- Fork the Markdownify repository
- Create a new branch for each feature or improvement
- Send a pull request from each feature branch to the v2.x branch
If you don't know much about pull request, you can read the Github article
Author & Community
Markdownify is under MIT License<br> It was created by Milian Wolff<br> It was converted to a Symfony Bundle by Peter Kruithof<br> It is maintained by Thomas ZILLIOX