Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:
- name: فحص الروابط الداخليّة (lychee على الإخراج المبنيّ)
uses: lycheeverse/lychee-action@v2
with:
args: --offline --no-progress "book/**/*.html"
# (AR) --root-dir يحلّ روابط الجذر «/» المحلّيّة (يولّدها قالب 404.html في mdBook)
# إلى جذر الكتاب المبنيّ، وإلّا فشل lychee دون اتّصال («Cannot convert path '/'»).
# (EN) --root-dir resolves local root links "/" (emitted by mdBook's 404.html) to the
# built book root; otherwise offline lychee errors with "Cannot convert path '/'".
args: --offline --no-progress --root-dir "${{ github.workspace }}/book" "book/**/*.html"
fail: true

# حُرّاس نظام المزامنة: سلامة البيان + منع «الكتم الصامت» للقفل
Expand Down
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- [المحلل المعجمي (Lexer)](frontend/lexer.md)
- [المحلل النحوي (Parser)](frontend/parser.md)
- [شجرة AST](frontend/ast.md)
- [دراسة حالة: الاستيعابات (أنتج → SIR)](frontend/comprehensions.md)

# الجزء الخامس · الواجهة الخلفيّة (Backend)

Expand Down
Loading
Loading