Skip to content

Commit

Permalink
wip: Progress on the link checker script.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhazen committed Sep 19, 2024
1 parent f50f94c commit c650d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scripts/check_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def generate_items():

def main():
parser = argparse.ArgumentParser(description="Link checker for Markdown files.")
parser.add_argument("--root-dir", type=str, default="com.playeveryware.eos", help="Root directory to search for Markdown files")
parser.add_argument("--root-dir", type=str, default=".", help="Root directory to search for Markdown files")
parser.add_argument("--include-external", action="store_true", help="Include external links in the inspection")
parser.add_argument("--concurrent-requests", type=int, default=10, help="Number of concurrent requests for external links")
parser.add_argument("--output-format", type=str, choices=["json", "text"], default="text", help="Output format (json or text)")
Expand Down

0 comments on commit c650d5a

Please sign in to comment.