1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# Comments
This page demonstrates functionality of comment libraries.
The theme does not change the style of these libraries, but should hide their UI elements on print.
## Hypothes.is
You can activate hypothes.is with the following JS:
```
<script async="async" src="https://hypothes.is/embed.js"></script>
```
## Utterances
You can activate utterances with the following JS:
```
<script
type="text/javascript"
src="https://utteranc.es/client.js"
async="async"
repo="executablebooks/jupyter-book"
issue-term="pathname"
theme="github-light"
label="💬 comment"
crossorigin="anonymous"
/>
```
|