def html_files()

in plugins/atlas-link-checker/atlas_link_checker/main.py [0:0]


def html_files() -> List[str]:
    if not os.path.isdir('site'):
        raise FileNotFoundError('mkdocs site directory not found')

    files = glob(f'{MKDOCS_SITE_DIRECTORY}/**/*.html', recursive=True)
    logger.info(f'found {len(files)} html files in mkdocs site directory')

    return files