Skip to content

Commit

Permalink
BUG: Don't exclude .gp class by default (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdarst authored Nov 18, 2022
1 parent 837f3ca commit 093defe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx_copybutton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 093defe

Please sign in to comment.