24 lines
481 B
Plaintext
24 lines
481 B
Plaintext
---
|
|
toc-location: right-body
|
|
toc-title: Table Of Contents
|
|
toc-expand: 2
|
|
---
|
|
|
|
```{python}
|
|
#|output: asis
|
|
#|echo: false
|
|
|
|
# This cell steals the README as the home page for now, but excludes the table of contents (quarto adds its own)
|
|
import re
|
|
pattern = re.compile(
|
|
r"<table>\s*<tr>\s*<td>\s*## Table of Contents.*?</td>\s*</tr>\s*</table>",
|
|
re.DOTALL | re.IGNORECASE
|
|
)
|
|
|
|
with open('README.md', 'r') as f:
|
|
txt = f.read()
|
|
|
|
cleaned = pattern.sub("", txt)
|
|
print(cleaned)
|
|
```
|