From 98aedcc23340179b92b027a086213283e5ce9a43 Mon Sep 17 00:00:00 2001 From: oliver Date: Sat, 16 Apr 2016 18:23:08 +0200 Subject: [PATCH] let Textile parser use unrestricted mode to allow HTML for formatted text --- app/TextFormatter.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/TextFormatter.inc b/app/TextFormatter.inc index c7c6bd67..ef479a59 100644 --- a/app/TextFormatter.inc +++ b/app/TextFormatter.inc @@ -60,7 +60,7 @@ // Use Textile \hhu\z\lib\Textile::load(); $textileParser = new \Netcarver\Textile\Parser('html5'); - $string = $textileParser->textileRestricted($string, false, false); + $string = $textileParser->textileThis($string); // Add link targets $string = $this->tLinks($string);