Releases: AppGram/docc2json
Releases · AppGram/docc2json
v1.2.0
Highlights
- Added new
json2docscommand to convert SDK JSON into docs-ready markdown output. - Added markdown/MDX generator supporting
md,mdx, andbothformats. - Added optional YAML frontmatter and generated docs structure for module/category/symbol pages.
- Updated README with JSON-to-docs workflow and examples.
Usage
go run ./cmd/json2docs -i ./sdk.json -o ./docs-site/content --format mdx
v1.0.0
docc2json v1.0.0
Initial release of docc2json - a tool to convert Apple DocC documentation to JSON format.
Downloads
| Platform | Architecture | Binary |
|---|---|---|
| macOS | Apple Silicon (arm64) | docc2json-darwin-arm64 |
| macOS | Intel (amd64) | docc2json-darwin-amd64 |
Installation
# For Apple Silicon Macs
curl -L https://github.com/AppGram/docc2json/releases/download/v1.0.0/docc2json-darwin-arm64 -o docc2json
chmod +x docc2json
sudo mv docc2json /usr/local/bin/
# For Intel Macs
curl -L https://github.com/AppGram/docc2json/releases/download/v1.0.0/docc2json-darwin-amd64 -o docc2json
chmod +x docc2json
sudo mv docc2json /usr/local/bin/