html_text -> html_text2

This commit is contained in:
Lucky 2023-08-30 22:05:52 -03:00 committed by GitHub
parent ba0c41ba3d
commit 4c72dc6e12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ df_links$txt <- paste("https://boards.4chan.org/pol/", df_links$txt, sep = "")
# to each row in the data frame
threads <- lapply(df_links$txt, function(x) {
read_html(x) %>%
html_text()})
html_text2()})
# Turn "threads" into a tibble so tidytex can manipulate it
threads_tibble <- tibble(txt = threads)