Some samples of formatting

This page generates on the fly the links above using this markdown code:

Markdown
1
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 })')
```