Skip to content

Commit 093defe

Browse files
authored
BUG: Don't exclude .gp class by default (#188)
1 parent 837f3ca commit 093defe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx_copybutton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def setup(app):
8181
app.add_config_value("copybutton_here_doc_delimiter", "", "html")
8282
app.add_config_value("copybutton_image_svg", "", "html")
8383
app.add_config_value("copybutton_selector", "div.highlight pre", "html")
84-
app.add_config_value("copybutton_exclude", ".linenos, .gp", "html")
84+
app.add_config_value("copybutton_exclude", ".linenos", "html")
8585

8686
# DEPRECATE THIS AFTER THE NEXT RELEASE
8787
app.add_config_value("copybutton_image_path", "", "html")

0 commit comments

Comments
 (0)