Remove the parsable tags when showing raw snip
This commit is contained in:
@ -19,4 +19,13 @@ class Pipeline
|
||||
|
||||
return $pipeline->process($payload);
|
||||
}
|
||||
|
||||
public function clean(string $payload): string
|
||||
{
|
||||
return str_replace(
|
||||
['```', '``'],
|
||||
'',
|
||||
$payload
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user