소스 검색

On utilise une méthode de inlinecontext pour le parser

Sangfroid 1 개월 전
부모
커밋
14b52fd0f7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Markdown/ColorParser.php

+ 1 - 1
src/Markdown/ColorParser.php

@@ -25,7 +25,7 @@ class ColorParser implements InlineParserInterface
             $colorNode = new ColorText($text, $color);
 
             $inlineContext->getContainer()->appendChild($colorNode);
-            $inlineContext->getCursor()->advanceBy(mb_strlen($matches[0]));
+            $inlineContext->getCursor()->advanceBy($inlineContext->getFullMatchLength());
             
             return true;
         }