Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
hanspagel authored and actions-user committed Aug 26, 2021
1 parent c9d30d5 commit ad02230
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/HintExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Ueberdosis\CommonMark;

use League\CommonMark\Extension\ExtensionInterface;
use League\CommonMark\Environment\EnvironmentBuilderInterface;
use League\CommonMark\Extension\ExtensionInterface;

class HintExtension implements ExtensionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/HintParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Ueberdosis\CommonMark;

use League\CommonMark\Parser\Block\BlockContinueParserInterface;
use League\CommonMark\Extension\CommonMark\Node\Block\BlockQuote;
use League\CommonMark\Node\Block\AbstractBlock;
use League\CommonMark\Parser\Block\BlockContinue;
use League\CommonMark\Parser\Block\BlockContinueParserInterface;
use League\CommonMark\Parser\Cursor;

class HintParser implements BlockContinueParserInterface
Expand Down
2 changes: 1 addition & 1 deletion src/HintRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function render(Node $node, ChildNodeRendererInterface $childRenderer): \

$attrs = $node->data->get('attributes');

$filling = $childRenderer->renderNodes($node->children());
$filling = $childRenderer->renderNodes($node->children());
$innerSeparator = $childRenderer->getInnerSeparator();
if ($filling === '') {
return new HtmlElement('blockquote', $attrs, $innerSeparator);
Expand Down

0 comments on commit ad02230

Please sign in to comment.