--- 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"\s*\s*\s*\s*
\s*## Table of Contents.*?
", re.DOTALL | re.IGNORECASE ) with open('README.md', 'r') as f: txt = f.read() cleaned = pattern.sub("", txt) print(cleaned) ```