Add links to documentation files

This commit is contained in:
Pieter Vander Vennet 2022-02-15 00:00:30 +01:00
parent c3b349851b
commit ea6471336a
68 changed files with 68 additions and 68 deletions

View file

@ -32,7 +32,7 @@ function WriteFile(filename, html: BaseUIElement, autogenSource: string[]): void
}
let md = new Combine([Translations.W(html),
"\n\nThis document is autogenerated from " + autogenSource.join(", ")
"\n\nThis document is autogenerated from " + autogenSource.map(file => `[${file}](https://github.com/pietervdvn/MapComplete/blob/develop/${file})`).join(", ")
]).AsMarkdown()
md.replace(/\n\n\n+/g, "\n\n");