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
* Filenames in Electron docs are usually unique so best effort
* consist on using the filename (basename) to identify the right
* place where it should point.
*/
constlinksMaps=newMap();
for(constfilePathoffiles){
linksMaps.set(path.basename(filePath),filePath);
}
We initially implemented the above map to fix a bunch of potentially misplaced links from upstream. However, this causes a problem where we get collisions for documents with the same basename.
Well well well, if it isn't the consequences of our own assumptions.
website/scripts/tasks/md-fixers.ts
Lines 351 to 359 in 9487f62
We initially implemented the above map to fix a bunch of potentially misplaced links from upstream. However, this causes a problem where we get collisions for documents with the same basename.
This breaks things such as the first link in https://www.electronjs.org/docs/latest/tutorial/navigation-history, which is supposed to point to the API class according to the raw documentation on
electron/electron
.The text was updated successfully, but these errors were encountered: