jBBCode icon indicating copy to clipboard operation
jBBCode copied to clipboard

wrong parse on code and blockquote

Open mariantatarau opened this issue 10 years ago • 2 comments

Seems that italic, bold is parsed on [code], can be excluded somehow ?

mariantatarau avatar Dec 07 '15 17:12 mariantatarau

I don't follow. How about a code sample?

shmax avatar Dec 07 '15 19:12 shmax

Config your CodeDefinition to not parsing the content.

Example:

$builder = new CodeDefinitionBuilder('code', '<code>{param}</code>');
$builder->setParseContent(false);
$definitions[] = $builder->build();

Art4 avatar Sep 19 '16 12:09 Art4