/home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Xml
Edit: /home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Xml/XmlNodeRendererInterface.php (610B)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\CommonMark\Xml;
use League\CommonMark\Node\Node;
interface XmlNodeRendererInterface
{
public function getXmlTagName(Node $node): string;
/**
* @return array
*
* @psalm-return array
*/
public function getXmlAttributes(Node $node): array;
}