From ec0358f7b09b069db581b3bc1c46f0048ad593f4 Mon Sep 17 00:00:00 2001
From: sloane <1699281+sloanelybutsurely@users.noreply.github.com>
Date: Sat, 9 Mar 2024 09:41:19 -0500
Subject: [PATCH] remove `dbg()`

---
 lib/sloane_sh/front_matter.ex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/sloane_sh/front_matter.ex b/lib/sloane_sh/front_matter.ex
index b0f2369..c4bca00 100644
--- a/lib/sloane_sh/front_matter.ex
+++ b/lib/sloane_sh/front_matter.ex
@@ -4,7 +4,7 @@ defmodule SloaneSH.FrontMatter do
   """
 
   def parse("+++" <> rest) do
-    [toml, body] = String.split(rest, ["+++\n", "+++\r\n"], parts: 2) |> dbg()
+    [toml, body] = String.split(rest, ["+++\n", "+++\r\n"], parts: 2)
 
     with {:ok, attrs} <- Toml.decode(toml, keys: :atoms) do
       {:ok, attrs, body}