github.com/Liam-Williams/i18n4go@v0.2.7-0.20201028180611-670cbaceaa6b/test_fixtures/extract_strings/f_option/input_files/issue4.go (about)

     1  package app
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  func Issue4() {
     8  	description := "Unsure how hard this is to fix, but I noticed that > would be translated to its unicode/ascii value."
     9  	moreInfo := "I am assuming this means <> would not be correctly extracted as well."
    10  
    11  	fmt.Println("GitHub: issue #4")
    12  	fmt.Println(description)
    13  	fmt.Println(moreInfo)
    14  }