From 8dd7786d99976f3ae6bed9873a7a7759d59f0912 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Thu, 21 Jan 2021 20:15:23 -0700 Subject: only strip quotes if they match --- build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 1c117bd..e3d0387 100644 --- a/build.py +++ b/build.py @@ -99,7 +99,10 @@ def render(site_dir, page: Page): def parse_front_matter(front_matter: str): lines = front_matter.split('\n') fields = [line.split(': ', 1) for line in lines if len(line.strip()) > 0] - return dict((key, value.strip('"')) for key, value in fields) + for i in range(len(fields)): + if fields[i][1].startswith('"') and fields[i][1].endswith('"'): + fields[i][1] = fields[i][1][1:-1] + return dict((key, value) for key, value in fields) def get_excerpt(body: str): -- cgit v1.2.3