Skip to content

Releases: AppGram/docc2json

v1.2.0

08 Feb 12:14

Choose a tag to compare

Highlights

  • Added new json2docs command to convert SDK JSON into docs-ready markdown output.
  • Added markdown/MDX generator supporting md, mdx, and both formats.
  • 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

01 Jan 16:36

Choose a tag to compare

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/