def _get_all_html_filenames()

in utils/sitemap.py [0:0]


def _get_all_html_filenames(html_dir: str):
    for root, dirs, files in os.walk(html_dir):
        for filename in files:
            if filename.endswith(".html"):
                yield os.path.join(root.replace(html_dir, ""), filename).replace("\\", "/")