Skip to content

Commit e6498d4

Browse files
committed
chore: regen docs
1 parent 9c8455a commit e6498d4

File tree

5 files changed

+41
-41
lines changed

5 files changed

+41
-41
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -49,31 +49,31 @@ All the `.gen.R` suffixed R source code found under [`R/`](https://gitlab.com/rp
4949

5050
This package borrows a lot of the [Tidyverse](https://www.tidyverse.org/) design philosophies. The R code is guided by the [Tidy design principles](https://design.tidyverse.org/) and is formatted according to the [Tidyverse Style Guide](https://style.tidyverse.org/) (TSG) with the following exceptions:
5151

52-
- Line width is limited to **160 characters**, double the [limit proposed by the TSG](https://style.tidyverse.org/syntax.html#long-lines) (80 characters is ridiculously little given today’s high-resolution wide screen monitors).
52+
- Line width is limited to **160 characters**, double the [limit proposed by the TSG](https://style.tidyverse.org/syntax.html#long-lines) (80 characters is ridiculously little given today’s high-resolution wide screen monitors).
5353

54-
Furthermore, the preferred style for breaking long lines differs. Instead of wrapping directly after an expression’s opening bracket as [suggested by the TSG](https://style.tidyverse.org/syntax.html#long-lines), we prefer two fewer line breaks and indent subsequent lines within the expression by its opening bracket:
54+
Furthermore, the preferred style for breaking long lines differs. Instead of wrapping directly after an expression’s opening bracket as [suggested by the TSG](https://style.tidyverse.org/syntax.html#long-lines), we prefer two fewer line breaks and indent subsequent lines within the expression by its opening bracket:
5555

56-
``` r
57-
# TSG proposes this
58-
do_something_very_complicated(
59-
something = "that",
60-
requires = many,
61-
arguments = "some of which may be long"
62-
)
56+
``` r
57+
# TSG proposes this
58+
do_something_very_complicated(
59+
something = "that",
60+
requires = many,
61+
arguments = "some of which may be long"
62+
)
6363

64-
# we prefer this
65-
do_something_very_complicated(something = "that",
66-
requires = many,
67-
arguments = "some of which may be long")
68-
```
64+
# we prefer this
65+
do_something_very_complicated(something = "that",
66+
requires = many,
67+
arguments = "some of which may be long")
68+
```
6969

70-
This results in less vertical and more horizontal spread of the code and better readability in pipes.
70+
This results in less vertical and more horizontal spread of the code and better readability in pipes.
7171

72-
- Usage of [magrittrs compound assignment pipe-operator `%<>%`](https://magrittr.tidyverse.org/reference/compound.html) is desirable[^2].
72+
- Usage of [magrittr’s compound assignment pipe-operator `%<>%`](https://magrittr.tidyverse.org/reference/compound.html) is desirable[^2].
7373

74-
- Usage of [Rs right-hand assignment operator `->`](https://rdrr.io/r/base/assignOps.html) is not allowed[^3].
74+
- Usage of [R’s right-hand assignment operator `->`](https://rdrr.io/r/base/assignOps.html) is not allowed[^3].
7575

76-
- R source code is *not* split over several files as [suggested by the TSG](https://style.tidyverse.org/package-files.html) but instead is (as far as possible) kept in the single file [`Rmd/nocodb.Rmd`](https://gitlab.com/rpkg.dev/nocodb/-/tree/main/Rmd/nocodb.Rmd) which is well-structured thanks to its [Markdown support](#r-markdown-format).
76+
- R source code is *not* split over several files as [suggested by the TSG](https://style.tidyverse.org/package-files.html) but instead is (as far as possible) kept in the single file [`Rmd/nocodb.Rmd`](https://gitlab.com/rpkg.dev/nocodb/-/tree/main/Rmd/nocodb.Rmd) which is well-structured thanks to its [Markdown support](#r-markdown-format).
7777

7878
As far as possible, these deviations from the TSG plus some additional restrictions are formally specified in [`pkgpurl::default_linters`](https://pkgpurl.rpkg.dev/reference/default_linters), which is (by default) used in [`pkgpurl::lint_rmd()`](https://pkgpurl.rpkg.dev/reference/lint_rmd), which in turn is the recommended way to lint this package.
7979

docs/dev/authors.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/pkgdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
pandoc: 3.6.3
1+
pandoc: 3.6.4
22
pkgdown: 2.1.1.9000
33
pkgdown_sha: 87287f602d5889b3ee3ccd82a6c686f6e5874732
44
articles: {}
5-
last_built: 2025-03-06T02:30Z
5+
last_built: 2025-04-15T19:20Z
66
urls:
77
reference: https://nocodb.rpkg.dev/reference
88
article: https://nocodb.rpkg.dev/articles

docs/dev/search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

pkgdown/index.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -47,31 +47,31 @@ All the `.gen.R` suffixed R source code found under [`R/`](https://gitlab.com/rp
4747

4848
This package borrows a lot of the [Tidyverse](https://www.tidyverse.org/) design philosophies. The R code is guided by the [Tidy design principles](https://design.tidyverse.org/) and is formatted according to the [Tidyverse Style Guide](https://style.tidyverse.org/) (TSG) with the following exceptions:
4949

50-
- Line width is limited to **160 characters**, double the [limit proposed by the TSG](https://style.tidyverse.org/syntax.html#long-lines) (80 characters is ridiculously little given today's high-resolution wide screen monitors).
50+
- Line width is limited to **160 characters**, double the [limit proposed by the TSG](https://style.tidyverse.org/syntax.html#long-lines) (80 characters is ridiculously little given today's high-resolution wide screen monitors).
5151

52-
Furthermore, the preferred style for breaking long lines differs. Instead of wrapping directly after an expression's opening bracket as [suggested by the TSG](https://style.tidyverse.org/syntax.html#long-lines), we prefer two fewer line breaks and indent subsequent lines within the expression by its opening bracket:
52+
Furthermore, the preferred style for breaking long lines differs. Instead of wrapping directly after an expression's opening bracket as [suggested by the TSG](https://style.tidyverse.org/syntax.html#long-lines), we prefer two fewer line breaks and indent subsequent lines within the expression by its opening bracket:
5353

54-
``` r
55-
# TSG proposes this
56-
do_something_very_complicated(
57-
something = "that",
58-
requires = many,
59-
arguments = "some of which may be long"
60-
)
54+
``` r
55+
# TSG proposes this
56+
do_something_very_complicated(
57+
something = "that",
58+
requires = many,
59+
arguments = "some of which may be long"
60+
)
6161

62-
# we prefer this
63-
do_something_very_complicated(something = "that",
64-
requires = many,
65-
arguments = "some of which may be long")
66-
```
62+
# we prefer this
63+
do_something_very_complicated(something = "that",
64+
requires = many,
65+
arguments = "some of which may be long")
66+
```
6767

68-
This results in less vertical and more horizontal spread of the code and better readability in pipes.
68+
This results in less vertical and more horizontal spread of the code and better readability in pipes.
6969

70-
- Usage of [magrittr's compound assignment pipe-operator `%<>%`](https://magrittr.tidyverse.org/reference/compound.html) is desirable[^2].
70+
- Usage of [magrittr's compound assignment pipe-operator `%<>%`](https://magrittr.tidyverse.org/reference/compound.html) is desirable[^2].
7171

72-
- Usage of [R's right-hand assignment operator `->`](https://rdrr.io/r/base/assignOps.html) is not allowed[^3].
72+
- Usage of [R's right-hand assignment operator `->`](https://rdrr.io/r/base/assignOps.html) is not allowed[^3].
7373

74-
- R source code is *not* split over several files as [suggested by the TSG](https://style.tidyverse.org/package-files.html) but instead is (as far as possible) kept in the single file [`Rmd/nocodb.Rmd`](https://gitlab.com/rpkg.dev/nocodb/-/tree/main/Rmd/nocodb.Rmd) which is well-structured thanks to its [Markdown support](#r-markdown-format).
74+
- R source code is *not* split over several files as [suggested by the TSG](https://style.tidyverse.org/package-files.html) but instead is (as far as possible) kept in the single file [`Rmd/nocodb.Rmd`](https://gitlab.com/rpkg.dev/nocodb/-/tree/main/Rmd/nocodb.Rmd) which is well-structured thanks to its [Markdown support](#r-markdown-format).
7575

7676
As far as possible, these deviations from the TSG plus some additional restrictions are formally specified in [`pkgpurl::default_linters`](https://pkgpurl.rpkg.dev/reference/default_linters), which is (by default) used in [`pkgpurl::lint_rmd()`](https://pkgpurl.rpkg.dev/reference/lint_rmd), which in turn is the recommended way to lint this package.
7777

0 commit comments

Comments
 (0)