This function parses a table written in TiddlyWiki format and converts it into an R data frame. It can optionally treat the first row as a header.
Examples
table <- "|!Cell1 |!Cell2 |\n|Cell3 |Cell4 |"
df <- read_table(table, header = TRUE)
print(df)
#> Cell1 Cell2
#> 1 Cell3 Cell4