mdbook-repl 0.1.1

A rust based mdbook preprocessor plugin that allows you to live code in your markdown book.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Limitations

There are some limitations to using pyodide.

For example, you can not use the **input** function to get user input. Authogh it is possible to override the **input** function to get user input from the console, but now it is not easy.

For example, the following code will not work:

```python
# This will not work

input('Enter your name: ')
```

And now there is also no easy way for **interrupt** your code, so dont't write bad code!!