From e38672f17d2924b295fd279e3db3f71080545f2c Mon Sep 17 00:00:00 2001 From: kvfi Date: Sun, 23 Apr 2017 08:47:46 +0100 Subject: [PATCH] Add missing regex import to Lexers example --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a5dc3aa..5069e2a 100644 --- a/README.rst +++ b/README.rst @@ -194,7 +194,7 @@ It is an inline grammar, which requires custom ``InlineGrammar`` and .. code:: python - import copy + import copy,re from mistune import Renderer, InlineGrammar, InlineLexer class WikiLinkRenderer(Renderer):