From 455915dd9863af54a283234b10189ac452552d78 Mon Sep 17 00:00:00 2001 From: James Brumond Date: Sat, 6 May 2023 14:08:59 -0700 Subject: [PATCH] readme --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index d2171bb..f2718e4 100644 --- a/readme.md +++ b/readme.md @@ -68,11 +68,11 @@ foo: # This is some markdown `; -const { frontmatter, markdown } = process_frontmatter(raw_content); +const { frontmatter, document } = process_frontmatter(raw_content); console.log(frontmatter.title); // "Example Markdown with front matter" console.log(frontmatter.foo); // [ "bar", "baz" ] -console.log(markdown); // "\n# This is some markdown\n" +console.log(document); // "\n# This is some markdown\n" ```