From 53139c0f52946b0dfc2ff26a77613b0d6845caa2 Mon Sep 17 00:00:00 2001 From: Collin Lefeber Date: Wed, 19 Jun 2024 16:42:46 -0400 Subject: [PATCH] build_a_blog: words --- posts/build_a_blog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/build_a_blog.md b/posts/build_a_blog.md index 960db96..8ab68c7 100644 --- a/posts/build_a_blog.md +++ b/posts/build_a_blog.md @@ -892,7 +892,7 @@ index 52ce57b..2ea80cb 100644 subs = { ``` -The biggest note is that `convert()` now creates a `Markdown` instance on each call. This protects against multiple processes trying to use the single module level `md` instance. +`convert()` now creates a `Markdown` instance on each call and returns the HTML and meta. This protects against multiple processes trying to use the single module level `md` instance. See for notes on `Markdown.reset()` usage and thread safety.