1
0
Fork 0

Move HTML to Markdown library to Composer

This commit is contained in:
Hypolite Petovan 2017-04-06 23:33:12 -04:00
commit c9dafe3b4e
43 changed files with 2380 additions and 776 deletions

View file

@ -0,0 +1,20 @@
<?php
namespace League\HTMLToMarkdown\Converter;
use League\HTMLToMarkdown\ElementInterface;
interface ConverterInterface
{
/**
* @param ElementInterface $element
*
* @return string
*/
public function convert(ElementInterface $element);
/**
* @return string[]
*/
public function getSupportedTags();
}