diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-08-16 10:32:35 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-08-16 10:32:35 +0200 |
commit | 4a7384bc0ce1893a432bf4b7d67bca23796fe9db (patch) | |
tree | 5623c66a3f66445284529d6207e4ab4a2edb2810 /vendor/pixel418/markdownify/README.md | |
parent | c664a4bdcd1bd578f5ec3c2884f7c97e9f68d2d7 (diff) | |
parent | 90bc21f2d560d879d7eaf05a85af6d6dca53ebac (diff) | |
download | volse-hubzilla-2.6.tar.gz volse-hubzilla-2.6.tar.bz2 volse-hubzilla-2.6.zip |
Merge branch '2.6RC'2.6
Diffstat (limited to 'vendor/pixel418/markdownify/README.md')
-rw-r--r-- | vendor/pixel418/markdownify/README.md | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/vendor/pixel418/markdownify/README.md b/vendor/pixel418/markdownify/README.md deleted file mode 100644 index 8855b0d05..000000000 --- a/vendor/pixel418/markdownify/README.md +++ /dev/null @@ -1,63 +0,0 @@ -# Markdownify - -[![Build Status](https://travis-ci.org/Elephant418/Markdownify.png?branch=master)](https://travis-ci.org/Elephant418/Markdownify?branch=master) -[![Total Downloads](https://poser.pugx.org/pixel418/markdownify/downloads)](https://packagist.org/packages/pixel418/markdownify) -[![License LGPL](https://poser.pugx.org/pixel418/markdownify/license)](https://opensource.org/licenses/lgpl-2.1.php) - -The HTML to Markdown converter for PHP - -[Code example](#code-example) | [How to Install](#how-to-install) | [How to Contribute](#how-to-contribute) | [Author & Community](#author--community) - - - -Code example --------- - -### Markdown - -```php -$converter = new Markdownify\Converter; -$converter->parseString('<h1>Heading</h1>'); -// Returns: # Heading -``` - -### Markdown Extra [as defined by @michelf](http://michelf.ca/projects/php-markdown/extra/) - -```php -$converter = new Markdownify\ConverterExtra; -$converter->parseString('<h1 id="md">Heading</h1>'); -// Returns: # Heading {#md} -``` - - - -How to Install --------- - -This library package requires `PHP 5.3` or later.<br> -Install [Composer](http://getcomposer.org/doc/01-basic-usage.md#installation) and run the following command to get the latest version: - -```sh -composer require pixel418/markdownify -``` - - - -How to Contribute --------- - -1. Fork the Markdownify repository -2. Create a new branch for each feature or improvement -3. 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](https://help.github.com/articles/using-pull-requests) - - - -Author & Community --------- - -Markdownify is under [LGPL License](http://opensource.org/licenses/LGPL-2.1)<br> -It was created by [Milian Wolff](http://milianw.de)<br> -It was converted to a Symfony Bundle by [Peter Kruithof](https://github.com/pkruithof)<br> -It is maintained by [Thomas ZILLIOX](http://tzi.fr) |