From 0e58f10c3b5fdab9781052909902a0f65bb4f105 Mon Sep 17 00:00:00 2001 From: Otto Sumray <63641575+osumray@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:40:28 +0200 Subject: [PATCH] Fix typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a46847c..77d4ecd 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ will install a module named `mdx_bib`. ```python import markdown -from mdx_bib import CitationExtension +from mdx_bib import CitationsExtension -cite = CitationExtension(bibtex_file='library.bib', order='unsorted') +cite = CitationsExtension(bibtex_file='library.bib', order='unsorted') html = markdown.markdown(text, extensions=[cite]) ```