From 6957c3e5c855a80195653a7983382cbebff5e320 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 2 Apr 2023 19:53:58 +0000 Subject: [PATCH] Deactivated not working stuff --- src/Content/Text/NPF.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/Content/Text/NPF.php b/src/Content/Text/NPF.php index f57ea15a8..d60b3a8e7 100644 --- a/src/Content/Text/NPF.php +++ b/src/Content/Text/NPF.php @@ -52,7 +52,6 @@ class NPF self::setHeadingSubStyles($doc); $element = $doc->getElementsByTagName('body')->item(0); -// echo $element->ownerDocument->saveHTML($element) . "\n"; list($npf, $text, $formatting) = self::routeChildren($element, $uri_id, true, []); @@ -186,6 +185,9 @@ class NPF static private function getLevelByCallstack($callstack): int { + // Deactivated, since Tumblr seems to have issues with the indent level + return 0; + $level = 0; foreach ($callstack as $entry) { if (in_array($entry, ['ol', 'ul', 'blockquote'])) { @@ -489,12 +491,13 @@ class NPF $block = [ 'type' => 'text', 'text' => $element->textContent, - 'formatting' => [ - 'start' => 0, - 'end' => strlen($element->textContent), - 'type' => 'link', - 'url' => $attributes['href'] - ] + // Deactivated, since Tumblr has got issues with the formatting + //'formatting' => [ + // 'start' => 0, + // 'end' => strlen($element->textContent), + // 'type' => 'link', + // 'url' => $attributes['href'] + //] ]; }