string-le 0.2.2

Extract every string in a codebase, with its position, so a person can read them
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

// A comment mentioning "the docs" is prose, not a literal.

const usage = `line one
line two`

func messages() []string {
	quoted := "double quoted"
	escaped := "say \"hi\""
	marker := '"'
	empty := ""
	_ = marker
	return []string{usage, quoted, escaped, empty}
}