Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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, a mini browser engine.

Usage

    package main

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

    func main() {
        tmpl := []byte(`<html><body><p id="hw">Hello, world</p></body></html>`)
        parsed := html.Parse(tmpl)
        fmt.Printf("%+v\n", parsed)
    }

Contributing

While I'm not currently investing heavily because of time. I'm open to welcoming new pull requests for new features or general improvements.

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.