GP-5093: Converting 'What's New' to Markdown

This commit is contained in:
Ryan Kurtz 2024-11-05 08:30:54 -05:00
parent befe67a637
commit 7f515c5e0e
7 changed files with 174 additions and 178 deletions

View file

@ -207,8 +207,13 @@ public class HelpBuildUtils {
ResourceFile file = null;
if (SystemUtilities.isInDevelopmentMode()) {
// example: "docs/WhatsNew.html", which lives in a source dir in dev mode
// Look for HTML files that live in global docs dir, such as 'docs/README_PDB.html'.
file = findModuleFile("src/global/" + updatedPath);
if (file == null) {
// Look for HTML files that get built to the global docs dir (such as
// 'docs/WhatsNew.md' -> 'WhatsNew.html')
file = findModuleFile("build/src/global/" + updatedPath);
}
}
else {
//