From 29536dad8de73d7c429238c1c473df501d41fdf6 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Wed, 8 Jan 2025 14:06:20 +0100 Subject: [PATCH] lint --- includes/constants.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/includes/constants.php b/includes/constants.php index f29aaf229..e12450205 100644 --- a/includes/constants.php +++ b/includes/constants.php @@ -36,7 +36,11 @@ 'p' => array(), 'span' => array( 'class' => true ), 'br' => array(), - 'a' => array( 'href' => true, 'rel' => true, 'class' => true ), + 'a' => array( + 'href' => true, + 'rel' => true, + 'class' => true, + ), 'del' => array(), 'pre' => array(), 'code' => array(), @@ -46,7 +50,10 @@ 'i' => array(), 'u' => array(), 'ul' => array(), - 'ol' => array( 'start' => true, 'reversed' => true ), + 'ol' => array( + 'start' => true, + 'reversed' => true, + ), 'li' => array( 'value' => true ), 'blockquote' => array(), 'h1' => array(),