library markdownify
Markdownify is a HTML to Markdown converter written in PHP
whsuite/markdownify
Markdownify is a HTML to Markdown converter written in PHP
- Wednesday, October 9, 2013
- by turn24
- Repository
- 0 Watchers
- 0 Stars
- 112 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 2 Forks
- 0 Open issues
- 2 Versions
- 3 % Grown
Markdownify
Getting Started
The easiest way to work with Markdownify is when it's installed as a
Composer package inside your project., (*1)
If you're not familiar with Composer, please see http://getcomposer.org/., (*2)
-
Add realestateconz/markdownify to your application's composer.json., (*3)
{
...
"require": {
"realestateconz/markdownify": "dev-master"
},
...
}
-
Run composer install., (*4)
-
If you haven't already, add the Composer autoload to your project's
initialization file. (example), (*5)
require 'vendor/autoload.php';