-
Hi, I modified the mkdocs.yml file as written in the docs code block section, in order to enable the clipboard button, but it does not seem to appear. Also checked other discussions, but all methods provided do not work. Those are my mkdocs.yml file. site_name: Problem Solving Notes
repo_name: arnold518/ps-notes
repo_url: https://github.com/arnold518/ps-notes
theme:
name: material
features:
- content.code.copy
icon:
repo: fontawesome/brands/github
language: ko
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- attr_list
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js And the markdown file. ``` cpp title="asdf.cpp" linenums="1"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int main()
{
printf("Hello World");
}
```
```{: .cpp .copy}
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int main()
{
printf("Hello World");
}
``` If more are needed, you can check my github Also, I checked the version using Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Very likely related to #5417 |
Beta Was this translation helpful? Give feedback.
I just released 9.1.8 – please check if that fixes the issue.