├── .github └── workflows │ └── go.yml ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── all_test.go ├── cmd └── ogp │ └── main.go ├── example_test.go ├── go.mod ├── go.sum ├── headers_test.go ├── intent.go ├── meta.go ├── opengraph.go ├── structured.go ├── tags.go └── test ├── html ├── 01_hello.html ├── 02_haisai.html ├── 03_image.html ├── 04_image_props.html └── 05_video.html └── manual_test.sh /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/README.md -------------------------------------------------------------------------------- /all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/all_test.go -------------------------------------------------------------------------------- /cmd/ogp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/cmd/ogp/main.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/go.sum -------------------------------------------------------------------------------- /headers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/headers_test.go -------------------------------------------------------------------------------- /intent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/intent.go -------------------------------------------------------------------------------- /meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/meta.go -------------------------------------------------------------------------------- /opengraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/opengraph.go -------------------------------------------------------------------------------- /structured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/structured.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/tags.go -------------------------------------------------------------------------------- /test/html/01_hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/html/01_hello.html -------------------------------------------------------------------------------- /test/html/02_haisai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/html/02_haisai.html -------------------------------------------------------------------------------- /test/html/03_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/html/03_image.html -------------------------------------------------------------------------------- /test/html/04_image_props.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/html/04_image_props.html -------------------------------------------------------------------------------- /test/html/05_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/html/05_video.html -------------------------------------------------------------------------------- /test/manual_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otiai10/opengraph/HEAD/test/manual_test.sh --------------------------------------------------------------------------------