From 093defe574977e71a6b13af07505c6328b2ace69 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Fri, 18 Nov 2022 12:05:43 +0200 Subject: [PATCH] BUG: Don't exclude `.gp` class by default (#188) --- sphinx_copybutton/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx_copybutton/__init__.py b/sphinx_copybutton/__init__.py index 3b48034..d0fd38a 100644 --- a/sphinx_copybutton/__init__.py +++ b/sphinx_copybutton/__init__.py @@ -81,7 +81,7 @@ def setup(app): app.add_config_value("copybutton_here_doc_delimiter", "", "html") app.add_config_value("copybutton_image_svg", "", "html") app.add_config_value("copybutton_selector", "div.highlight pre", "html") - app.add_config_value("copybutton_exclude", ".linenos, .gp", "html") + app.add_config_value("copybutton_exclude", ".linenos", "html") # DEPRECATE THIS AFTER THE NEXT RELEASE app.add_config_value("copybutton_image_path", "", "html")