Some samples of formatting code execution formatting GitHub actions links pyodide This page generates on the fly the links above using this markdown code: Markdown1 2 3 4 5 6 7 8 9```python exec='1' from pathlib import Path path = Path('_file_').parent for p in (path / 'docs'/ 'Playground').iterdir(): if p.stem == 'index': continue print(f'- [{p.stem }]({p.stem })') ```