Skip to content

Commit

Permalink
Get rid of extra quotes in urls. (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthegeek authored Jul 17, 2023
1 parent d17b800 commit ef78547
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/html.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@
return(
xml2::xml_find_all(row, ".//td")[[col_number]] |>
xml2::xml_find_all(".//a") |>
xml2::xml_attr("href")
xml2::xml_attr("href") |>
stringr::str_replace_all(stringr::fixed('\\\"'), '"') |>
stringr::str_remove_all('"')
)
}

Expand Down
Binary file modified R/sysdata.rda
Binary file not shown.
Binary file modified data/tt_datasets_metadata.rda
Binary file not shown.
Binary file modified data/tt_summary_tbl.rda
Binary file not shown.
Binary file modified data/tt_urls_tbl.rda
Binary file not shown.

0 comments on commit ef78547

Please sign in to comment.