highlight_go

package module
v0.0.0-...-33e0579 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 8, 2023 License: MIT Imports: 5 Imported by: 5

README

highlight_go

Go Reference

Package highlight_go provides a syntax highlighter for Go, using go/scanner.

Installation

go get github.com/shurcooL/highlight_go

License

Documentation

Overview

Package highlight_go provides a syntax highlighter for Go, using go/scanner.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Annotate

Annotate annotates src using annotator a.

Example
package main

import (
	"fmt"
	"log"
	"sort"
	"text/template"

	"github.com/shurcooL/go/reflectsource"
	"github.com/shurcooL/highlight_go"
	"github.com/sourcegraph/annotate"
	"github.com/sourcegraph/syntaxhighlight"
)

// debugAnnotator implements syntaxhighlight.Annotator and prints the parameters it's given.
type debugAnnotator struct{ syntaxhighlight.Annotator }

func (a debugAnnotator) Annotate(start int, kind syntaxhighlight.Kind, tokText string) (*annotate.Annotation, error) {
	fmt.Println(reflectsource.GetParentFuncArgsAsString(start, kind, tokText))

	return a.Annotator.Annotate(start, kind, tokText)
}

func main() {
	src := []byte(`package main

import "fmt"

func main() {
	fmt.Println("Hey there, Go.")
}
`)

	// debugAnnotator implements syntaxhighlight.Annotator and prints the parameters it's given.
	p := debugAnnotator{Annotator: syntaxhighlight.HTMLAnnotator(syntaxhighlight.DefaultHTMLConfig)}

	anns, err := highlight_go.Annotate(src, p)
	if err != nil {
		log.Fatalln(err)
	}

	sort.Sort(anns)

	b, err := annotate.Annotate(src, anns, template.HTMLEscape)
	if err != nil {
		log.Fatalln(err)
	}

	fmt.Println(string(b))

}
Output:

Annotate(0, syntaxhighlight.Keyword, "package")
Annotate(8, syntaxhighlight.Plaintext, "main")
Annotate(14, syntaxhighlight.Keyword, "import")
Annotate(21, syntaxhighlight.String, "\"fmt\"")
Annotate(28, syntaxhighlight.Keyword, "func")
Annotate(33, syntaxhighlight.Plaintext, "main")
Annotate(37, syntaxhighlight.Plaintext, "(")
Annotate(38, syntaxhighlight.Plaintext, ")")
Annotate(40, syntaxhighlight.Plaintext, "{")
Annotate(43, syntaxhighlight.Plaintext, "fmt")
Annotate(46, syntaxhighlight.Plaintext, ".")
Annotate(47, syntaxhighlight.Plaintext, "Println")
Annotate(54, syntaxhighlight.Plaintext, "(")
Annotate(55, syntaxhighlight.String, "\"Hey there, Go.\"")
Annotate(71, syntaxhighlight.Plaintext, ")")
Annotate(73, syntaxhighlight.Plaintext, "}")
<span class="kwd">package</span> <span class="pln">main</span>

<span class="kwd">import</span> <span class="str">&#34;fmt&#34;</span>

<span class="kwd">func</span> <span class="pln">main</span><span class="pln">(</span><span class="pln">)</span> <span class="pln">{</span>
	<span class="pln">fmt</span><span class="pln">.</span><span class="pln">Println</span><span class="pln">(</span><span class="str">&#34;Hey there, Go.&#34;</span><span class="pln">)</span>
<span class="pln">}</span>

func Print

func Print(src []byte, w io.Writer, p syntaxhighlight.Printer) error

Print prints src to w using printer p.

Example
package main

import (
	"bytes"
	"fmt"
	"io"
	"os"

	"github.com/shurcooL/go/reflectsource"
	"github.com/shurcooL/highlight_go"
	"github.com/sourcegraph/syntaxhighlight"
)

// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
type debugPrinter struct{ syntaxhighlight.Printer }

func (p debugPrinter) Print(w io.Writer, kind syntaxhighlight.Kind, tokText string) error {
	fmt.Println(reflectsource.GetParentFuncArgsAsString(kind, tokText))

	return p.Printer.Print(w, kind, tokText)
}

func main() {
	src := []byte(`package main

import "fmt"

func main() {
	fmt.Println("Hey there, Go.")
}
`)

	// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
	p := debugPrinter{Printer: syntaxhighlight.HTMLPrinter(syntaxhighlight.DefaultHTMLConfig)}

	var buf bytes.Buffer
	highlight_go.Print(src, &buf, p)

	io.Copy(os.Stdout, &buf)

}
Output:

Print(syntaxhighlight.Keyword, "package")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "main")
Print(syntaxhighlight.Whitespace, "\n\n")
Print(syntaxhighlight.Keyword, "import")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.String, "\"fmt\"")
Print(syntaxhighlight.Whitespace, "\n\n")
Print(syntaxhighlight.Keyword, "func")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "main")
Print(syntaxhighlight.Plaintext, "(")
Print(syntaxhighlight.Plaintext, ")")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "{")
Print(syntaxhighlight.Whitespace, "\n\t")
Print(syntaxhighlight.Plaintext, "fmt")
Print(syntaxhighlight.Plaintext, ".")
Print(syntaxhighlight.Plaintext, "Println")
Print(syntaxhighlight.Plaintext, "(")
Print(syntaxhighlight.String, "\"Hey there, Go.\"")
Print(syntaxhighlight.Plaintext, ")")
Print(syntaxhighlight.Whitespace, "\n")
Print(syntaxhighlight.Plaintext, "}")
Print(syntaxhighlight.Whitespace, "\n")
<span class="kwd">package</span> <span class="pln">main</span>

<span class="kwd">import</span> <span class="str">&#34;fmt&#34;</span>

<span class="kwd">func</span> <span class="pln">main</span><span class="pln">(</span><span class="pln">)</span> <span class="pln">{</span>
	<span class="pln">fmt</span><span class="pln">.</span><span class="pln">Println</span><span class="pln">(</span><span class="str">&#34;Hey there, Go.&#34;</span><span class="pln">)</span>
<span class="pln">}</span>
Example (Illegal)
package main

import (
	"fmt"
	"io"
	"io/ioutil"

	"github.com/shurcooL/go/reflectsource"
	"github.com/shurcooL/highlight_go"
	"github.com/sourcegraph/syntaxhighlight"
)

// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
type debugPrinter struct{ syntaxhighlight.Printer }

func (p debugPrinter) Print(w io.Writer, kind syntaxhighlight.Kind, tokText string) error {
	fmt.Println(reflectsource.GetParentFuncArgsAsString(kind, tokText))

	return p.Printer.Print(w, kind, tokText)
}

func main() {
	src := []byte(" a @ @@@ b ")

	highlight_go.Print(src, ioutil.Discard, debugPrinter{Printer: syntaxhighlight.HTMLPrinter(syntaxhighlight.DefaultHTMLConfig)})

}
Output:

Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "a")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "@")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "@")
Print(syntaxhighlight.Plaintext, "@")
Print(syntaxhighlight.Plaintext, "@")
Print(syntaxhighlight.Whitespace, " ")
Print(syntaxhighlight.Plaintext, "b")
Print(syntaxhighlight.Whitespace, " ")
Example (TwoDots)

See issue golang.org/issue/28112.

package main

import (
	"bytes"
	"fmt"
	"io"
	"os"

	"github.com/shurcooL/go/reflectsource"
	"github.com/shurcooL/highlight_go"
	"github.com/sourcegraph/syntaxhighlight"
)

// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
type debugPrinter struct{ syntaxhighlight.Printer }

func (p debugPrinter) Print(w io.Writer, kind syntaxhighlight.Kind, tokText string) error {
	fmt.Println(reflectsource.GetParentFuncArgsAsString(kind, tokText))

	return p.Printer.Print(w, kind, tokText)
}

func main() {
	src := []byte("a..b..")

	// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
	p := debugPrinter{Printer: syntaxhighlight.HTMLPrinter(syntaxhighlight.DefaultHTMLConfig)}

	var buf bytes.Buffer
	highlight_go.Print(src, &buf, p)

	io.Copy(os.Stdout, &buf)

}
Output:

Print(syntaxhighlight.Plaintext, "a")
Print(syntaxhighlight.Plaintext, ".")
Print(syntaxhighlight.Plaintext, ".")
Print(syntaxhighlight.Plaintext, "b")
Print(syntaxhighlight.Plaintext, ".")
Print(syntaxhighlight.Plaintext, ".")
<span class="pln">a</span><span class="pln">.</span><span class="pln">.</span><span class="pln">b</span><span class="pln">.</span><span class="pln">.</span>
Example (Whitespace)
package main

import (
	"fmt"
	"io"
	"io/ioutil"

	"github.com/shurcooL/go/reflectsource"
	"github.com/shurcooL/highlight_go"
	"github.com/sourcegraph/syntaxhighlight"
)

// debugPrinter implements syntaxhighlight.Printer and prints the parameters it's given.
type debugPrinter struct{ syntaxhighlight.Printer }

func (p debugPrinter) Print(w io.Writer, kind syntaxhighlight.Kind, tokText string) error {
	fmt.Println(reflectsource.GetParentFuncArgsAsString(kind, tokText))

	return p.Printer.Print(w, kind, tokText)
}

func main() {
	src := []byte("  package    main      \n\t\n")

	highlight_go.Print(src, ioutil.Discard, debugPrinter{Printer: syntaxhighlight.HTMLPrinter(syntaxhighlight.DefaultHTMLConfig)})

}
Output:

Print(syntaxhighlight.Whitespace, "  ")
Print(syntaxhighlight.Keyword, "package")
Print(syntaxhighlight.Whitespace, "    ")
Print(syntaxhighlight.Plaintext, "main")
Print(syntaxhighlight.Whitespace, "      \n\t\n")

func TokenKind

func TokenKind(tok token.Token, lit string) syntaxhighlight.Kind

TokenKind returns a syntaxhighlight token kind value for the given tok and lit.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL