auth/vendor/willnorris.com/go/microformats
Maxim Lebedev dcf9e3c2ca
continuous-integration/drone/push Build is failing Details
📌 Vendored dependencies
2022-06-09 22:35:23 +05:00
..
.gitmodules 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00
LICENSE 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00
README.md 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00
backcompat.go 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00
datetime.go 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00
microformats.go 📌 Vendored dependencies 2022-06-09 22:35:23 +05:00

README.md

microformats

GoDoc
Test Status
Test Coverage

microformats is a go library and tool for parsing microformats, supporting
both classic v1 and v2 syntax. It is based on Andy Leap's original
library
.

Usage

Import the package:

import "willnorris.com/go/microformats"

Fetch the HTML contents of a page, and call Parse or ParseNode,
depending on what input you have (an io.Reader or an html.Node). See an
example of each in cmd/gomf/main.go.