Commit 5241537
authored
Fix broken FieldMaps link in TfsWorkItemMigrationProcessor documentation (#2749)
The TfsWorkItemMigrationProcessor documentation contained a broken link
to the FieldMaps reference that resulted in a 404 error when users tried
to access it.
## Issue
The link `[FieldMaps](../Reference/FieldMaps/index.md)` in the processor
notes used an incorrect relative path. From the
`/docs/Reference/Processors/` directory, the path
`../Reference/FieldMaps/index.md` attempted to navigate to
`/docs/Reference/Reference/FieldMaps/index.md` which doesn't exist.
## Solution
- **Fixed the relative path**: Changed `../Reference/FieldMaps/index.md`
to `../FieldMaps/index.md` in `TfsWorkItemMigrationProcessor-notes.md`
- **Corrected ConsoleDataGenerator paths**: Fixed path resolution issues
in `Program.cs` and `MarkdownLoader.cs` that prevented proper
documentation regeneration
- **Regenerated documentation**: Used the ConsoleDataGenerator to update
all collections and data files with the corrected link
## Verification
The fix ensures that:
- The link correctly resolves from `/docs/Reference/Processors/` to
`/docs/Reference/FieldMaps/index.md`
- No broken FieldMaps links remain in the documentation
- The target FieldMaps index page exists and is accessible
- All generated documentation files contain the corrected link
Users can now successfully navigate to the Field Maps documentation
without encountering 404 errors.
Fixes #2622.
<!-- START COPILOT CODING AGENT TIPS -->
---
💬 Share your feedback on Copilot coding agent for the chance to win a
$200 gift card! Click
[here](https://survey.alchemer.com/s3/8343779/Copilot-Coding-agent) to
start the survey.File tree
79 files changed
+175
-175
lines changed- docs
- Reference/Processors
- _data
- collections/_reference
- src/MigrationTools.ConsoleDataGenerator
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
79 files changed
+175
-175
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
120 | | - | |
121 | | - | |
| 120 | + | |
| 121 | + | |
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
116 | | - | |
117 | | - | |
| 116 | + | |
| 117 | + | |
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
58 | | - | |
| 57 | + | |
| 58 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
63 | | - | |
| 62 | + | |
| 63 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
86 | | - | |
| 85 | + | |
| 86 | + | |
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
124 | | - | |
| 124 | + | |
125 | 125 | | |
0 commit comments