From d89c4b5e507a305fc14f8bb467679ae20dc8f94d Mon Sep 17 00:00:00 2001 From: Timur Demin Date: Sat, 12 Dec 2020 14:06:22 +0500 Subject: [PATCH] Reword RenderMarkdown docstring --- render.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/render.go b/render.go index 7008316..f96e8df 100644 --- a/render.go +++ b/render.go @@ -70,9 +70,9 @@ const ( WithMetadata Settings = 0b1 ) -// RenderMarkdown converts Markdown text to text/gemini using -// gomarkdown, appending Hugo YAML front matter data if any is present -// to the post header. +// RenderMarkdown converts Markdown text to Gemtext using gomarkdown. It +// appends Hugo YAML front matter data to the post header if +// WithMetadata is set. // // Only a subset of front matter data parsed by Hugo is included in the // final document. At this point it's just title and date.