mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 11:31:43 +00:00
GP-4987: Generating HTML from Markdown
This commit is contained in:
parent
55aaef9b76
commit
7504acdb4a
@ -122,9 +122,11 @@ rootProject.assembleDistribution {
|
|||||||
include 'GhidraDev*.zip'
|
include 'GhidraDev*.zip'
|
||||||
into "Extensions/Eclipse/GhidraDev/"
|
into "Extensions/Eclipse/GhidraDev/"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rootProject.assembleMarkdownToHtml {
|
||||||
from ("${this.projectDir}/README.md") {
|
from ("${this.projectDir}/README.md") {
|
||||||
into "Extensions/Eclipse/GhidraDev/"
|
into "Extensions/Eclipse/GhidraDev/"
|
||||||
rename 'README.md', 'GhidraDev_README.md'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
23
GhidraBuild/MarkdownSupport/build.gradle
Normal file
23
GhidraBuild/MarkdownSupport/build.gradle
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/* ###
|
||||||
|
* IP: GHIDRA
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
apply from: "$rootProject.projectDir/gradle/javaProject.gradle"
|
||||||
|
apply plugin: 'eclipse'
|
||||||
|
eclipse.project.name = '_MarkdownSupport'
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation 'org.commonmark:commonmark:0.23.0'
|
||||||
|
implementation 'org.commonmark:commonmark-ext-heading-anchor:0.23.0'
|
||||||
|
}
|
2
GhidraBuild/MarkdownSupport/certification.manifest
Normal file
2
GhidraBuild/MarkdownSupport/certification.manifest
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
##VERSION: 2.0
|
||||||
|
##MODULE IP: BSD-2-ATLASSIAN
|
@ -0,0 +1,95 @@
|
|||||||
|
/* ###
|
||||||
|
* IP: GHIDRA
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package ghidra.markdown;
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.commonmark.Extension;
|
||||||
|
import org.commonmark.ext.heading.anchor.HeadingAnchorExtension;
|
||||||
|
import org.commonmark.node.Link;
|
||||||
|
import org.commonmark.node.Node;
|
||||||
|
import org.commonmark.parser.Parser;
|
||||||
|
import org.commonmark.renderer.html.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Program to convert a Markdown file to an HTML file
|
||||||
|
*/
|
||||||
|
public class MarkdownToHtml {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts a Markdown file to an HTML file
|
||||||
|
*
|
||||||
|
* @param args An array of 2 arguments: The path of the markdown file to convert, and the path
|
||||||
|
* to save the new HTML file to
|
||||||
|
* @throws Exception If invalid arguments are passed in, or if there is an issue writing the
|
||||||
|
* new HTML file
|
||||||
|
*/
|
||||||
|
public static void main(String[] args) throws Exception {
|
||||||
|
|
||||||
|
// Validate input
|
||||||
|
if (args.length != 2) {
|
||||||
|
throw new Exception("Expected 2 arguments, got " + args.length);
|
||||||
|
}
|
||||||
|
if (!args[0].toLowerCase().endsWith(".md")) {
|
||||||
|
throw new Exception("First argument doesn't not end with .md");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setup the CommonMark Library with the needed "anchor extension" library
|
||||||
|
List<Extension> extensions = List.of(HeadingAnchorExtension.create());
|
||||||
|
Parser parser = Parser.builder().extensions(extensions).build();
|
||||||
|
HtmlRenderer renderer = HtmlRenderer.builder()
|
||||||
|
.extensions(extensions)
|
||||||
|
.attributeProviderFactory(new LinkAttributeProvider())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Create output directory (if necessary)
|
||||||
|
File inFile = new File(args[0]);
|
||||||
|
File outFile = new File(args[1]);
|
||||||
|
if (!outFile.getParentFile().isDirectory() && !outFile.getParentFile().mkdirs()) {
|
||||||
|
throw new Exception("Failed to create: " + outFile.getParent());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate and write the HTML
|
||||||
|
String html = renderer.render(parser.parseReader(new FileReader(inFile)));
|
||||||
|
try (PrintWriter out = new PrintWriter(outFile)) {
|
||||||
|
out.write(html);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to help adjust links to Markdown files to instead become links to HTML files
|
||||||
|
*/
|
||||||
|
private static class LinkAttributeProvider
|
||||||
|
implements AttributeProvider, AttributeProviderFactory {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AttributeProvider create(AttributeProviderContext attributeProviderContext) {
|
||||||
|
return new LinkAttributeProvider();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setAttributes(Node node, String tagName, Map<String, String> attributes) {
|
||||||
|
if (node instanceof Link) {
|
||||||
|
String href = attributes.get("href");
|
||||||
|
if (href != null && !href.startsWith("#") && href.toLowerCase().endsWith(".md")) {
|
||||||
|
attributes.put("href", href.substring(0, href.length() - 2) + "html");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -500,6 +500,31 @@ task assembleSource (type: Copy) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/************************************************************************************
|
||||||
|
*
|
||||||
|
* Copies a markdown file and a generaterated html file into the distribution folder.
|
||||||
|
*
|
||||||
|
************************************************************************************/
|
||||||
|
task assembleMarkdownToHtml (type: Copy) {
|
||||||
|
group 'private'
|
||||||
|
description "Copies a markdown file and a generaterated html file into the distribution folder"
|
||||||
|
|
||||||
|
dependsOn ':MarkdownSupport:classes'
|
||||||
|
outputs.upToDateWhen {false}
|
||||||
|
destinationDir file(DISTRIBUTION_DIR.getPath() + "/" + ZIP_DIR_PREFIX)
|
||||||
|
|
||||||
|
eachFile { f ->
|
||||||
|
def htmlName = f.sourceName[0..-3] + "html"
|
||||||
|
def htmlPath = f.relativePath.replaceLastName(htmlName).pathString
|
||||||
|
|
||||||
|
javaexec {
|
||||||
|
classpath = project(':MarkdownSupport').sourceSets.main.runtimeClasspath
|
||||||
|
mainClass = 'ghidra.markdown.MarkdownToHtml'
|
||||||
|
args f.file
|
||||||
|
args file("${destinationDir.path}/${htmlPath}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************************
|
/*********************************************************************************
|
||||||
*
|
*
|
||||||
@ -581,6 +606,7 @@ task assembleAll() {
|
|||||||
|
|
||||||
dependsOn assembleDistribution
|
dependsOn assembleDistribution
|
||||||
dependsOn assembleSource
|
dependsOn assembleSource
|
||||||
|
dependsOn assembleMarkdownToHtml
|
||||||
dependsOn "assembleDistribution_$currentPlatform"
|
dependsOn "assembleDistribution_$currentPlatform"
|
||||||
|
|
||||||
if (project.hasProperty("allPlatforms")) {
|
if (project.hasProperty("allPlatforms")) {
|
||||||
|
23
licenses/BSD-2-ATLASSIAN.txt
Normal file
23
licenses/BSD-2-ATLASSIAN.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
Copyright (c) 2015, Atlassian Pty Ltd
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice, this
|
||||||
|
list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -1,6 +1,7 @@
|
|||||||
##VERSION: 2.0
|
##VERSION: 2.0
|
||||||
Apache_License_2.0.txt||LICENSE||||END|
|
Apache_License_2.0.txt||LICENSE||||END|
|
||||||
Apache_License_2.0_with_LLVM_Exceptions.txt||LICENSE||||END|
|
Apache_License_2.0_with_LLVM_Exceptions.txt||LICENSE||||END|
|
||||||
|
BSD-2-ATLASSIAN.txt||LICENSE||||END|
|
||||||
BSD-2-ORACLE.txt||LICENSE||||END|
|
BSD-2-ORACLE.txt||LICENSE||||END|
|
||||||
BSD-3-APPLE.txt||LICENSE||||END|
|
BSD-3-APPLE.txt||LICENSE||||END|
|
||||||
BSD-3-CAPSTONE.txt||LICENSE||||END|
|
BSD-3-CAPSTONE.txt||LICENSE||||END|
|
||||||
|
@ -35,6 +35,7 @@ includeProjects('GPL')
|
|||||||
*******************************************************************************************/
|
*******************************************************************************************/
|
||||||
includeProject('Doclets', 'GhidraBuild/BuildFiles', true)
|
includeProject('Doclets', 'GhidraBuild/BuildFiles', true)
|
||||||
includeProject('LaunchSupport', 'GhidraBuild', true)
|
includeProject('LaunchSupport', 'GhidraBuild', true)
|
||||||
|
includeProject('MarkdownSupport', 'GhidraBuild', true)
|
||||||
includeProject('Skeleton', 'GhidraBuild', true)
|
includeProject('Skeleton', 'GhidraBuild', true)
|
||||||
includeProject('BuildFiles', 'GhidraBuild', true)
|
includeProject('BuildFiles', 'GhidraBuild', true)
|
||||||
includeProject('decompile', 'Ghidra/Features/Decompiler/src', true)
|
includeProject('decompile', 'Ghidra/Features/Decompiler/src', true)
|
||||||
|
Loading…
Reference in New Issue
Block a user