Consider this CSV data:
#id,title,text
1,hello world,"This is a ""blog""."
2,second time,"My
second
entry."
This data can be read with the following code:
// r can be any io.Reader, including a file.
csvReader := csv.NewReader(r)
// Set comment char...