diff --git a/aider/scrape.py b/aider/scrape.py index 228fee553..d136d295e 100755 --- a/aider/scrape.py +++ b/aider/scrape.py @@ -117,6 +117,9 @@ def html_to_text(page_source: str) -> str: return text +def html_to_markdown(page_source: str) -> str: + pass + def main(url): scraper = Scraper() content = scraper.scrape(url)