GO Viewer, Editor, Formatter

Options:

HTML <style>, <script> formatting:

Enter your messy, minified, or obfuscated Go Programming Language into the field above to have it cleaned up and made pretty. The editor above also contains helpful line numbers and syntax highlighting. There are many option to tailor the beautifier to your personal formatting tastes.

When do you use GO Viewer, Editor, Formatter

Often when writing Go Programming Language your indentation, spacing, and other formatting can become a bit disorganized. It is also common for multiple developers to work on a single project who have different formatting techniques.  This tool is helpful for making the formatting of a file consistent. It is also common for Go Programming Language to be minified or obfuscated. You can use this tool to make that code look pretty and readable so it is easier to edit.

Examples

The minified Go Programming Language below:

package main

import "fmt"

func main(){	fmt.Println("Hello World")
 // comment one
  //comment two
  }

Becomes this beautified Go Programming Language:

package main

import "fmt"

func main() {
    fmt.Println("Hello World")
        // comment one
        //comment two
}