
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
minecraft-documentation-extractor
Advanced tools
This is a script which extracts data from minecraft addon documentation.
To use this script, you need the Documentation_Scripting.html (or Documentation_Addons.html) file from the vanilla addon files.
First, install this script globally with:
npm install -g minecraft-documentation-extractor
You can then execute
minecraft-documentation-extractor --scripting ./Documentation_Scripting.html
to parse the Documentation_Scripting.html file and print the documentation in JSON format to the console. To write the output to a file documentation.json, do
minecraft-documentation-extractor --scripting ./Documentation_Scripting.html ./documentation.json
Install it with:
npm install minecraft-documentation-extractor
Example code:
const { MinecraftScriptDocumentation } = require("minecraft-documentation-extractor");
async function myFunction() {
const documentation = await MinecraftScriptDocumentation.fromFile("./Documentation_Scripting.html");
for (const component of documentation.components) {
console.log(component.name);
}
}
You can use this script under the terms of the GNU General Public License, either version 3, or (at your option) any later version. For more information see LICENSE.
FAQs
Extracts minecraft documentation from HTML files
We found that minecraft-documentation-extractor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.