Skip to content

Commit

Permalink
fix FAQ parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Oct 30, 2024
1 parent 007ef61 commit 6064e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/google-form-faq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
url = 'https://docs.google.com/spreadsheets/d/1RFF3G9_bP8EpfACBk8lnF-Ib43ZGGAMm3ewPwW7eFT0/export?format=tsv'
data = `curl -sL "#{url}"`

data = CSV.parse(data, col_sep: "\t", headers: true, quote_char: '|')
data = CSV.parse(data, col_sep: "\t", headers: true)
count = 0

data.each do |row|
Expand Down

0 comments on commit 6064e7a

Please sign in to comment.