Deactivate the attributes

This commit is contained in:
Michael 2023-04-02 09:09:55 +00:00
parent 0c7be66d79
commit 63d0c88c5a

View File

@ -172,28 +172,9 @@ class NPF
$npf = self::addImageBlock($child, $uri_id, $level, $npf); $npf = self::addImageBlock($child, $uri_id, $level, $npf);
break; break;
case 'ol': default:
case 'div':
case 'h1':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
case 'h6':
case 'blockquote':
case 'p':
case 'pre':
case 'code':
case 'ul':
case 'li':
case 'details':
list($npf, $text, $formatting) = self::routeChildren($child, $uri_id, true, $callstack, $npf, $text, $formatting); list($npf, $text, $formatting) = self::routeChildren($child, $uri_id, true, $callstack, $npf, $text, $formatting);
break; break;
default:
print_r($npf);
print_r($callstack);
die($child . "\n");
} }
} }
@ -310,9 +291,10 @@ class NPF
'text' => $text, 'text' => $text,
]; ];
if (!empty($formatting)) { // Deactivated since Tumblr has got issues with it
$block['formatting'] = $formatting; //if (!empty($formatting)) {
} // $block['formatting'] = $formatting;
//}
$level = self::getLevelByCallstack($callstack); $level = self::getLevelByCallstack($callstack);
if ($level > 0) { if ($level > 0) {
@ -345,7 +327,7 @@ class NPF
$poster['height'] = $media['preview-height']; $poster['height'] = $media['preview-height'];
} }
if (!empty($poster)) { if (!empty($poster)) {
$block['poster'] = $poster; $block['poster'] = [$poster];
} }
return $block; return $block;
} }