fix: Replace URL placeholders with anchors to fix link checker

The link checker was treating placeholder `URL` text as actual URLs,
causing 400 errors in CI. Changed to `#` anchors instead.
This commit is contained in:
Luong NGUYEN
2026-02-04 08:58:57 +01:00
parent f396788a5e
commit 9b21f2b129
2 changed files with 6 additions and 6 deletions
@@ -58,9 +58,9 @@
## References
1. [Source Title](URL)
2. [Source Title](URL)
3. [Source Title](URL)
1. [Source Title](#)
2. [Source Title](#)
3. [Source Title](#)
---
@@ -84,9 +84,9 @@
## Sources to Cite
1. [Source Name](URL) - Used for: [what information]
2. [Source Name](URL) - Used for: [what information]
3. [Source Name](URL) - Used for: [what information]
1. [Source Name](#) - Used for: [what information]
2. [Source Name](#) - Used for: [what information]
3. [Source Name](#) - Used for: [what information]
---