diff --git a/.docs/content/3.in-depth/2.provider-system.md b/.docs/content/3.in-depth/2.provider-system.md index b499ff6..6482839 100644 --- a/.docs/content/3.in-depth/2.provider-system.md +++ b/.docs/content/3.in-depth/2.provider-system.md @@ -85,6 +85,7 @@ Every scraper has a **rank** that determines its priority in the execution queue - Failed scrapers are skipped, next rank is tried ### Rank Ranges +Usually ranks should be on 10s: 110, 120, 130... ```typescript // Typical rank ranges (not enforced, but conventional) Sources: 1-300 @@ -125,7 +126,7 @@ Before choosing a rank, check what's already taken: grep -r "rank:" src/providers/ | sort -t: -k3 -n ``` -Or check the all.ts file to see which scrapers are currently registered and their ranks. +Or check the cli to see the ranks. ::alert{type="warning"} **Duplicate ranks will cause conflicts!** Always verify your chosen rank is unique before submitting.