Skip to content

Commit 87c6694

Browse files
committed
Fix description inline tags parser (curly braces are no longer removed)
1 parent 9101566 commit 87c6694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parser/Description/DescriptionParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function parse(string $description): Description
2828
if (\str_starts_with($chunk, '@')) {
2929
try {
3030
$tags[] = $this->tags->parse($chunk, $this);
31-
$result .= $this->createDescriptionChunkPlaceholder(++$tagIdentifier);
31+
$result .= '{' . $this->createDescriptionChunkPlaceholder(++$tagIdentifier) . '}';
3232
} catch (\Throwable) {
3333
$result .= "{{$chunk}}";
3434
}

0 commit comments

Comments
 (0)