We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7218b47 commit 16545d7Copy full SHA for 16545d7
2 files changed
docs/mkdocs.yml
@@ -66,6 +66,7 @@ markdown_extensions:
66
- pymdownx.highlight:
67
anchor_linenums: true
68
line_spans: __span
69
+ use_pygments: true
70
pygments_lang_class: true
71
- pymdownx.inlinehilite
72
- pymdownx.snippets
@@ -75,3 +76,6 @@ extra:
75
76
version:
77
provider: mike
78
alias: true
79
+
80
+extra_css:
81
+- css/extra.css
docs/src/css/extra.css
@@ -0,0 +1,5 @@
1
+/* Ref: https://mkdocstrings.github.io/recipes/#prevent-selection-of-prompts-and-output-in-python-code-blocks */
2
3
+.language-pycon .gp, .language-pycon .go { /* Generic.Prompt, Generic.Output */
4
+ user-select: none;
5
+}
0 commit comments