/htmlcolor

Html syntax highlighter for Go

Primary LanguageGoMIT LicenseMIT

htmlcolor

Html syntax highlighter for Go

Installation

go get github.com/x86kernel/htmlcolor

Example Code

package main

import (
        "bytes"
        "fmt"
        
        "github.com/x86kernel/htmlcolor"
)

func main() {
        htmlformatter := htmlcolor.NewFormatter()

        testhtml := []byte("<html>\n<head>\n<body>\n</body>\n</head>\n</html>")

        buffer := bytes.NewBuffer(make([]byte, len(testhtml)))
        htmlformatter.Format(buffer, testhtml)

        fmt.Println(buffer)
}