Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 531 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 531 Bytes

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)
}