REFACTORING cleaning and fixing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-10-02 15:39:00 +02:00
parent 46959ca43f
commit 8e19d76ccd
6 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ add_action('enqueue_block_editor_assets', 'carhop_format_types_enqueue_assets');
function carhop_format_types_enqueue_front_assets()
{
wp_enqueue_style('carhop-format-types-footnote-style', plugins_url('src/formats/footnote.css', __FILE__));
wp_enqueue_style('carhop-format-types-uppercased-small-title-style', plugins_url('src/formats/uppercased-small-title.css', __FILE__));
wp_enqueue_style('carhop-format-types-footnote-style', plugins_url('src/footnotes/footnote.css', __FILE__));
wp_enqueue_style('carhop-format-types-uppercased-small-title-style', plugins_url('src/uppercased-small-title/uppercased-small-title.css', __FILE__));
}
add_action('wp_enqueue_scripts', 'carhop_format_types_enqueue_front_assets');

View File

@ -5,5 +5,5 @@
*/
// Import all format types
import "./formats/footnote.js";
import "./formats/uppercased-small-title.js";
import "./footnotes/footnote.js";
import "./uppercased-small-title/uppercased-small-title.js";