From d00954ddcb578be545131d23436eb41625f2b17d Mon Sep 17 00:00:00 2001 From: Daniel Seifert Date: Fri, 15 Feb 2019 11:04:05 +0100 Subject: [PATCH] change search pattern for d3 logo replacement use "(D3)" instead of "D3" --- daux/d3processor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daux/d3processor.php b/daux/d3processor.php index a7b2d89..8e0f991 100644 --- a/daux/d3processor.php +++ b/daux/d3processor.php @@ -170,7 +170,7 @@ class d3TextRenderer implements InlineRendererInterface $content = $htmlRenderer->escape($inline->getContent()); $search = array( - 'D3', 'D³', 'D³' + '(D3)', '(D³)', '(D³)' ); $replace = ""; $content = str_replace($search, $replace, $content);