slidev-addon-python-runner
slidev-addon-python-runner copied to clipboard
抽象成组件的需求
考虑提供组件使用的方式吗?有在组件内使用的需求
编辑器和输出的UI组件是Slidev里的。本仓库只负责执行代码
Nice ! Does you add-on allows for sharing variables across slides ?
here is an illustration of a basic version of my use case:
Slide 1:
a = 1 b = 2
Slide 2:
print(str(a+b))
3
A more complex version would include displaying interactive data viz.