remove dbg()

This commit is contained in:
sloane 2024-03-09 09:41:19 -05:00
parent 8a2d6c6b80
commit ec0358f7b0

View file

@ -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}