diff --git a/app/Services/Markdown/Formatter.php b/app/Services/Markdown/Formatter.php index d3f07d3..ec32a5f 100644 --- a/app/Services/Markdown/Formatter.php +++ b/app/Services/Markdown/Formatter.php @@ -46,7 +46,7 @@ public function render(): string $cacheKey = sprintf('markdown_formatted_%s', $hash); if (Cache::has($cacheKey)) { - return Cache::get($cacheKey); + // return Cache::get($cacheKey); } // First, process the source with Blade to handle any dynamic content @@ -59,7 +59,7 @@ public function render(): string // Perform final adjustments like inserting non-breaking spaces $result = $this->insertNonBreakingSpaces($converted->getContent()); - Cache::put($cacheKey, $result, now()->addMonth()); + // Cache::put($cacheKey, $result, now()->addMonth()); return $result; }