Skip to content

Commit

Permalink
Merge pull request #60 from nacnudus/URI
Browse files Browse the repository at this point in the history
Fix broken URIs for CRAN
  • Loading branch information
nacnudus authored Apr 1, 2020
2 parents 6fde751 + 46d2d76 commit 1e40cb5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ xml-based file formats '.xlsx' and '.xlsm' via the embedded
the binary file formats '.xlsb' or '.xls'.

It also provides a function `xlex()` for tokenizing formulas. See the
[vignette](articles/smells.html) for
[vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
details. It is useful for detecting 'spreadsheet smells' (poor practice such as
embedding constants in formulas, or using deep levels of nesting), and for
understanding the dependency structures within spreadsheets.
Expand Down Expand Up @@ -226,7 +226,7 @@ x <- xlex("MIN(3,MAX(2,A1))")
x
```

See the [vignette](articles/smells.html) for
See the [vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
more examples and details.

### Named ranges
Expand All @@ -250,7 +250,7 @@ xlsx_names(examples)
Data validation rules are imported with `xlsx_validation()`. These rules
control what values may be entered into a cell, and are often used to create a
drop-down list in a cell. Read the
[vignette](articles/data-validation-rules.html)
[vignette](https://nacnudus.github.io/tidyxl/articles/data-validation-rules.html)
for details.

```{r}
Expand Down
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ supports the xml-based file formats ‘.xlsx’ and ‘.xlsm’ via the embedded
support the binary file formats ‘.xlsb’ or ‘.xls’.

It also provides a function `xlex()` for tokenizing formulas. See the
[vignette](articles/smells.html) for details. It is useful for detecting
‘spreadsheet smells’ (poor practice such as embedding constants in
formulas, or using deep levels of nesting), and for understanding the
dependency structures within spreadsheets.
[vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
details. It is useful for detecting ‘spreadsheet smells’ (poor practice
such as embedding constants in formulas, or using deep levels of
nesting), and for understanding the dependency structures within
spreadsheets.

## Make cells tidy

Expand Down Expand Up @@ -380,7 +381,9 @@ x
#> °-- ) fun_close
```

See the [vignette](articles/smells.html) for more examples and details.
See the
[vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
more examples and details.

### Named ranges

Expand Down Expand Up @@ -410,7 +413,8 @@ xlsx_names(examples)
Data validation rules are imported with `xlsx_validation()`. These rules
control what values may be entered into a cell, and are often used to
create a drop-down list in a cell. Read the
[vignette](articles/data-validation-rules.html) for details.
[vignette](https://nacnudus.github.io/tidyxl/articles/data-validation-rules.html)
for details.

``` r
xlsx_validation(examples)
Expand Down
6 changes: 6 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Resubmission

This is a resubmission. In this version I have:

* Fixed broken URIs in the documentation.

## Test environments

### Local
Expand Down
6 changes: 3 additions & 3 deletions vignettes/tidyxl.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ xml-based file formats '.xlsx' and '.xlsm' via the embedded
the binary file formats '.xlsb' or '.xls'.

It also provides a function `xlex()` for tokenizing formulas. See the
[vignette](file:///home/nacnudus/R/tidyxl/docs/articles/smells.html) for
[vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
details. It is useful for detecting 'spreadsheet smells' (poor practice such as
embedding constants in formulas, or using deep levels of nesting), and for
understanding the dependency structures within spreadsheets.
Expand Down Expand Up @@ -216,7 +216,7 @@ x <- xlex("MIN(3,MAX(2,A1))")
x
```

See the [vignette](file:///home/nacnudus/R/tidyxl/docs/articles/smells.html) for
See the [vignette](https://nacnudus.github.io/tidyxl/articles/smells.html) for
more examples and details.

### Named ranges
Expand All @@ -240,7 +240,7 @@ xlsx_names(examples)
Data validation rules are imported with `xlsx_validation()`. These rules
control what values may be entered into a cell, and are often used to create a
drop-down list in a cell. Read the
[vignette](file:///home/nacnudus/R/tidyxl/docs/articles/data-validation-rules.html)
[vignette](https://nacnudus.github.io/tidyxl/articles/data-validation-rules.html)
for details.

```{r}
Expand Down

0 comments on commit 1e40cb5

Please sign in to comment.