diff --git a/app/Services/PluginImportService.php b/app/Services/PluginImportService.php
index ff52bf4..dbd8ec8 100644
--- a/app/Services/PluginImportService.php
+++ b/app/Services/PluginImportService.php
@@ -59,7 +59,6 @@ class PluginImportService
// Read full.liquid content
$fullLiquid = File::get($filePaths['fullLiquidPath']);
- $fullLiquid = '
'."\n".$fullLiquid."\n".'
';
// Prepend shared.liquid content if available
if ($filePaths['sharedLiquidPath'] && File::exists($filePaths['sharedLiquidPath'])) {
@@ -67,6 +66,8 @@ class PluginImportService
$fullLiquid = $sharedLiquid."\n".$fullLiquid;
}
+ $fullLiquid = ''."\n".$fullLiquid."\n".'
';
+
// Check if the file ends with .liquid to set markup language
$markupLanguage = 'blade';
if (pathinfo($filePaths['fullLiquidPath'], PATHINFO_EXTENSION) === 'liquid') {