You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/01-understanding-github-web-structure.md
+27-10Lines changed: 27 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -196,16 +196,33 @@ Your personal home (`github.com`) shows activity from repositories you follow. Y
196
196
197
197
A repository home page is laid out from top to bottom as follows. The Global Navigation bar (landmark: "Navigation Menu") contains the GitHub logo, Search, Copilot, Pull Requests, Issues, Notifications bell, and your avatar. Below that are the Repository Tabs (landmark: "Repository navigation") showing Code, Issues (12), Pull requests (3), Actions, and more. Next is the Repository Header, which is the H1 heading "owner / repo-name" plus Star (42), Watch, and Fork (8) buttons. The main content area is split into two columns. On the left is the File Area with the branch selector (main), Go to file button, Code button, and the File Table (a landmark) listing files like .github/, docs/, and README.md with dates. On the right is the Sidebar with the About section, description text, topics (accessibility), Releases (3), Contributors (5), and Languages (Markdown 100%). Below both columns is the rendered README (landmark: "Repository files navigation"), and at the bottom is the Footer.
Copy file name to clipboardExpand all lines: docs/02-navigating-repositories.md
+20-9Lines changed: 20 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,15 +31,26 @@ When you navigate to a GitHub repository (e.g., `https://github.com/owner/repo-n
31
31
32
32
The repository home page is organized from top to bottom as follows. The Navigation bar (GitHub global nav) contains the avatar menu, Notifications, and search. Below that is the Repository header showing "owner / repo-name" as the H1 heading, plus Star, Watch, and Fork buttons. Next are the Repository navigation tabs (a landmark) with Code (active), Issues, Pull requests, Actions, and more. The main content area is split into two columns: on the left is the File tree / code panel with the branch selector, Files table (navigable as a table), and last commit message; on the right is the Sidebar with the About section, topics, and releases. Below both columns is the rendered README.md in a separate landmark region.
Copy file name to clipboardExpand all lines: docs/03-the-learning-room.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,14 @@ Before starting Chapter 4 challenges, students should be able to:
25
25
26
26
The learning-room is a single shared repository. It has a protected main branch, and each student opens pull requests against it. For example: Student A's PR #12 is open and assigned to Student B for review, Student B's PR #13 is assigned to Student C, Student C's PR #14 is assigned to Student A, and Student A's earlier PR #11 has already been merged. More PRs appear as students contribute.
27
27
28
-
```mermaid
29
-
graph TD
30
-
LR["learning-room (SHARED)"]
31
-
LR --> MAIN["main branch (protected)"]
32
-
LR --> PR12["Student A's PR #12\nopen, assigned to Student B for review"]
33
-
LR --> PR13["Student B's PR #13\nopen, assigned to Student C for review"]
34
-
LR --> PR14["Student C's PR #14\nopen, assigned to Student A for review"]
35
-
LR --> PR11["Student A's PR #11\nmerged, closed"]
36
-
LR --> MORE["More PRs as students contribute"]
28
+
```text
29
+
learning-room (SHARED)
30
+
├── main branch (protected)
31
+
├── Student A's PR #12 (open, assigned to Student B for review)
32
+
├── Student B's PR #13 (open, assigned to Student C for review)
33
+
├── Student C's PR #14 (open, assigned to Student A for review)
Copy file name to clipboardExpand all lines: docs/12-github-pull-requests-extension.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,18 +192,17 @@ gh pr list --search "review-requested:@me"
192
192
193
193
The GitHub Pull Requests panel has two top-level sections. "My Pull Requests" contains four filters: Assigned to Me, Created by Me, Waiting for my Review, and All Open. The repository section shows Local Pull Request Branches (checked out locally), All Open Pull Requests, and All Closed Pull Requests.
194
194
195
-
```mermaid
196
-
graph TD
197
-
ROOT["GitHub Pull Requests"]
198
-
ROOT --> MY["My Pull Requests"]
199
-
MY --> ASSIGNED["Assigned to Me"]
200
-
MY --> CREATED["Created by Me"]
201
-
MY --> WAITING["Waiting for my Review"]
202
-
MY --> ALLOPEN["All Open"]
203
-
ROOT --> REPO["Repository Name"]
204
-
REPO --> LOCAL["Local Pull Request Branches\n(checked out locally)"]
205
-
REPO --> OPEN["All Open Pull Requests"]
206
-
REPO --> CLOSED["All Closed Pull Requests"]
195
+
```text
196
+
GitHub Pull Requests
197
+
├── My Pull Requests
198
+
│ ├── Assigned to Me
199
+
│ ├── Created by Me
200
+
│ ├── Waiting for my Review
201
+
│ └── All Open
202
+
├── [Repository Name]
203
+
│ ├── Local Pull Request Branches (checked out locally)
Copy file name to clipboardExpand all lines: docs/15-issue-templates.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,16 +195,15 @@ Templates live in a specific folder in your repository:
195
195
196
196
Templates live inside your-repo/.github/. The ISSUE_TEMPLATE/ subfolder contains: bug_report.md (Markdown template), feature_request.md (Markdown template), accessibility-bug.yml (YAML form template), and config.yml (template chooser configuration). The pull_request_template.md file sits directly in .github/, not inside ISSUE_TEMPLATE/.
197
197
198
-
```mermaid
199
-
graph TD
200
-
REPO["your-repo/"]
201
-
REPO --> GH[".github/"]
202
-
GH --> IT["ISSUE_TEMPLATE/"]
203
-
IT --> BUG["bug_report.md\nMarkdown template"]
204
-
IT --> FEAT["feature_request.md\nMarkdown template"]
205
-
IT --> A11Y["accessibility-bug.yml\nYAML form template"]
206
-
IT --> CONFIG["config.yml\nTemplate chooser configuration"]
**Markdown templates (`.md`):** Traditional template format. Pre-fills a text editor with structured Markdown content. Contributors edit the template directly, replacing instructions and placeholder text with their own content.
Copy file name to clipboardExpand all lines: docs/appendix-m-vscode-accessibility-reference.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,17 +177,17 @@ The Accessible Diff Viewer presents file diffs as a structured, line-by-line lis
177
177
178
178
The Accessible Diff Viewer starts with a header showing the file path and change summary. It then shows each hunk (changed section) in order. Each hunk contains: the hunk location (line range), unchanged context lines, the modified, added, or removed lines with their prefix, and more context lines. After all hunks, a footer shows the totals for additions and deletions.
Copy file name to clipboardExpand all lines: docs/appendix-q-github-actions-workflows.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,15 +57,14 @@ Workflow files live in a specific, mandatory location:
57
57
58
58
Workflow files live at your-repository/.github/workflows/. Example files include: ci.yml (runs tests on every push or PR), lint.yml (checks code style), a11y-scan.yml (accessibility scanning), and deploy.yml (deploys the site when code merges to main).
0 commit comments