mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-5028: Convert ChangeHistory to Markdown
This commit is contained in:
parent
710e2a8ba3
commit
bc8a083351
4 changed files with 2793 additions and 3024 deletions
|
@ -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
File diff suppressed because it is too large
Load diff
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue