File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -123,19 +123,23 @@ def entire_domain(host):
123
123
124
124
autosectionlabel_prefix_document = True
125
125
126
+ # -- intersphinx --
127
+
128
+ intersphinx_mapping = {
129
+ "python" : ("https://docs.python.org/3" , None ),
130
+ "referencing" : ("https://referencing.readthedocs.io/en/stable/" , None ),
131
+ }
132
+
126
133
# -- extlinks --
127
134
128
135
extlinks = {
129
136
"ujs" : ("https://json-schema.org/understanding-json-schema%s" , None ),
130
137
}
131
138
extlinks_detect_hardcoded_links = True
139
+ # -- sphinx-copybutton --
132
140
133
- # -- intersphinx --
134
-
135
- intersphinx_mapping = {
136
- "python" : ("https://docs.python.org/3" , None ),
137
- "referencing" : ("https://referencing.readthedocs.io/en/stable/" , None ),
138
- }
141
+ copybutton_prompt_text = r">>> |\.\.\. |\$"
142
+ copybutton_prompt_is_regexp = True
139
143
140
144
# -- sphinxcontrib-spelling --
141
145
You can’t perform that action at this time.
0 commit comments