From 3e641e2596a5afbbd2aa06be56f1f1193fe6021a Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 4 Jun 2015 07:49:14 +0200 Subject: Fix bug #19: Tabs ignored in HTML export --- lib/converter/cleanhtml.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/converter/cleanhtml.php') diff --git a/lib/converter/cleanhtml.php b/lib/converter/cleanhtml.php index 6c5dabf..6ee3431 100644 --- a/lib/converter/cleanhtml.php +++ b/lib/converter/cleanhtml.php @@ -34,7 +34,6 @@ class CleanHtml extends Html 'list-item' => 'li', 'bold' => 'b', 'italic' => 'i', - 'monospace' => 'tt', 'size:large' => 'h3', 'size:huge' => 'h2', @@ -47,6 +46,10 @@ class CleanHtml extends Html 'size:small' => 'small', ); + protected static $styleMap = array( + 'monospace' => 'font-family:monospace; white-space: pre-wrap' + ); + /** * Converts the tomboy note XML into HTML. * Cleans HTML a bit up after it has been generated with the clean tags. -- cgit v1.2.3