https://github.com/timolinn/html
[WIP] HTML Parser written in Go
https://github.com/timolinn/html
browser browser-engine go html htmlparser parser parsers
Last synced: about 2 months ago
JSON representation
[WIP] HTML Parser written in Go
- Host: GitHub
- URL: https://github.com/timolinn/html
- Owner: timolinn
- License: mit
- Created: 2019-10-31T14:46:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T23:27:57.000Z (about 2 years ago)
- Last Synced: 2025-01-26T20:32:32.975Z (4 months ago)
- Topics: browser, browser-engine, go, html, htmlparser, parser, parsers
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTML Parser
## I am currently re-writing this parser.
This is a simple html parser, it really is nothing super serious. However, it will power [nginB](https://github.com/timolinn/nginB), a mini browser engine.
## Usage
```go
package mainimport (
"fmt"
"github.com/timolinn/html-parser"
)func main() {
tmpl := []byte(`Hello, world
`)
parsed := html.Parse(tmpl)
fmt.Printf("%+v\n", parsed)
}
```