From 0eba47196a81453bafe1f2492748a87475063dff Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Wed, 18 May 2022 10:18:56 +0200 Subject: [PATCH] Fix typo in guide.rst `s/strikethough/strikethrough/` --- docs/guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide.rst b/docs/guide.rst index b554768..ff7a786 100644 --- a/docs/guide.rst +++ b/docs/guide.rst @@ -12,7 +12,7 @@ The ``.html()`` methods has enabled all the features you might want by default: * No escape of HTML tags -* With **strikethough** plugin +* With **strikethrough** plugin * With **table** plugin * With **footnote** plugin @@ -46,7 +46,7 @@ Adding plugins:: # ==> '

~~s~~

' - markdown = mistune.create_markdown(plugins=['strikethough']) + markdown = mistune.create_markdown(plugins=['strikethrough']) markdown('~~s~~') # ==> '

s

'