diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml
index 2e856c210..7dabc925d 100644
--- a/dev/pkgdown.yml
+++ b/dev/pkgdown.yml
@@ -8,7 +8,7 @@ articles:
openxlsx2_charts_manual: openxlsx2_charts_manual.html
openxlsx2_formulas_manual: openxlsx2_formulas_manual.html
openxlsx2_style_manual: openxlsx2_style_manual.html
-last_built: 2023-12-20T22:47Z
+last_built: 2023-12-27T01:28Z
urls:
reference: https://janmarvin.github.io/openxlsx2/reference
article: https://janmarvin.github.io/openxlsx2/articles
diff --git a/dev/reference/properties-wb.html b/dev/reference/properties-wb.html
index b048ced53..4d9a93142 100644
--- a/dev/reference/properties-wb.html
+++ b/dev/reference/properties-wb.html
@@ -147,7 +147,7 @@
diff --git a/dev/search.json b/dev/search.json
index 19517428e..b2f383fe0 100644
--- a/dev/search.json
+++ b/dev/search.json
@@ -1 +1 @@
-[{"path":"https://janmarvin.github.io/openxlsx2/dev/articles/Update-from-openxlsx.html","id":"basic-read-and-write-functions","dir":"Articles","previous_headings":"","what":"Basic read and write functions","title":"Upgrade from openxlsx","text":"Welcome openxlsx2 update vignette. vignette take common code examples openxlsx show similar results can replicated openxlsx2. Thank taking look, let’s get started. previous openxlsx functions used . function calls, well camelCase, tried switch snake_case (still work progress, may still function arguments use camelCase).","code":""},{"path":"https://janmarvin.github.io/openxlsx2/dev/articles/Update-from-openxlsx.html","id":"read-xlsx-or-xlsm-files","dir":"Articles","previous_headings":"Basic read and write functions","what":"Read xlsx or xlsm files","title":"Upgrade from openxlsx","text":"basic read function changed read.xlsx read_xlsx. Using default xlsx file included package: old syntax looked like : changed : can see, return spreadsheet return codes (e.g., #NUM) openxlsx2. Another thing see , return cell row rowname data frame returned. openxlsx2 return data frame selected size, even empty. preferred openxlsx::readWorkbook() become wb_read(). wrappers newly introduced function wb_to_df() provides options. read_xlsx() wb_read() created backward comparability.","code":"file <- system.file(\"extdata\", \"openxlsx2_example.xlsx\", package = \"openxlsx2\") # read in openxlsx openxlsx::read.xlsx(xlsxFile = file) # read in openxlsx2 openxlsx2::read_xlsx(file = file) ## Var1 Var2 NA Var3 Var4 Var5 Var6 Var7 Var8 ## 3 TRUE 1 NA 1 a 2023-05-29 3209324 This #DIV/0! 01:27:15 ## 4 TRUE NA NA #NUM! b 2023-05-23