whsuite/markdownify

Markdownify is a HTML to Markdown converter written in PHP

1.0.0 2013-10-09 14:36 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:39:58 UTC


README

Getting Started

The easiest way to work with Markdownify is when it's installed as a Composer package inside your project.

If you're not familiar with Composer, please see http://getcomposer.org/.

  1. Add realestateconz/markdownify to your application's composer.json.

     {
         ...
         "require": {
             "realestateconz/markdownify": "dev-master"
         },
         ...
     }
    
  2. Run composer install.

  3. If you haven't already, add the Composer autoload to your project's initialization file. (example)

     require 'vendor/autoload.php';