1
0
mirror of https://github.com/Chouchen/tumblr2shaarli.git synced 2018-06-06 17:22:06 +02:00
tumblr2shaarli/src/vendor/league/html-to-markdown/src/Converter/ConverterInterface.php

21 lines
351 B
PHP

<?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();
}