An open API service indexing awesome lists of open source software.

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

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 main

import (
"fmt"
"github.com/timolinn/html-parser"
)

func main() {
tmpl := []byte(`

Hello, world

`)
parsed := html.Parse(tmpl)
fmt.Printf("%+v\n", parsed)
}
```