GP-5028: Convert ChangeHistory to Markdown

This commit is contained in:
Ryan Kurtz 2024-12-04 10:57:56 -05:00
parent 710e2a8ba3
commit bc8a083351
4 changed files with 2793 additions and 3024 deletions

View file

@ -2,7 +2,7 @@
Module.manifest||GHIDRA||||END| Module.manifest||GHIDRA||||END|
README.md||GHIDRA||||END| README.md||GHIDRA||||END|
data/PDB_SYMBOL_SERVER_URLS.pdburl||GHIDRA||||END| data/PDB_SYMBOL_SERVER_URLS.pdburl||GHIDRA||||END|
src/global/docs/ChangeHistory.html||GHIDRA||||END| src/global/docs/ChangeHistory.md||GHIDRA||||END|
src/global/docs/UserAgreement.html||GHIDRA||||END| src/global/docs/UserAgreement.html||GHIDRA||||END|
src/global/docs/WhatsNew.md||GHIDRA||||END| src/global/docs/WhatsNew.md||GHIDRA||||END|
src/main/resources/UserAgreement.html||GHIDRA||||END| src/main/resources/UserAgreement.html||GHIDRA||||END|

File diff suppressed because it is too large Load diff

View file

@ -60,8 +60,8 @@ public class MarkdownToHtml {
.build(); .build();
// Create output directory (if necessary) // Create output directory (if necessary)
File inFile = new File(args[0]); File inFile = new File(args[0]).getCanonicalFile();
File outFile = new File(args[1]); File outFile = new File(args[1]).getCanonicalFile();
if (!outFile.getParentFile().isDirectory() && !outFile.getParentFile().mkdirs()) { if (!outFile.getParentFile().isDirectory() && !outFile.getParentFile().mkdirs()) {
throw new Exception("Failed to create: " + outFile.getParent()); throw new Exception("Failed to create: " + outFile.getParent());
} }