File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
Package: styler
2
2
Title: Non-invasive Pretty Printing of R code
3
- Version: 0.0-3
3
+ Version: 0.0-4
4
4
Authors@R: person("Kirill", "Müller", role = c("aut", "cre"), email = "
[email protected] ")
5
5
Description:
6
6
Pretty-prints R code without changing the user's formatting intent.
@@ -13,10 +13,12 @@ Imports:
13
13
tidyr,
14
14
purrr,
15
15
magrittr
16
- Suggests: testthat,
16
+ Suggests:
17
+ data.tree,
18
+ here,
17
19
knitr,
18
20
rmarkdown,
19
- data.tree
21
+ testthat
20
22
Remotes:
21
23
krlmlr/utf8
22
24
License: GPL-3
Original file line number Diff line number Diff line change
1
+ ## styler 0.0-4 (2017-06-15)
2
+
3
+ - Fix ` README.Rmd ` for compatibility with pkgdown.
4
+
5
+
1
6
## styler 0.0-3 (2017-06-15)
2
7
3
8
- Technical release for creation of pkgdown documentation.
Original file line number Diff line number Diff line change 1
1
---
2
2
output :
3
- md_document :
4
- variant : markdown_github
3
+ github_document :
4
+ html_preview : false
5
5
---
6
6
7
7
<!-- README.md is generated from README.Rmd. Please edit that file -->
@@ -39,7 +39,7 @@ print_code <- function(x) {
39
39
collapse = "\n"))
40
40
}
41
41
42
- dirty <- readLines("tests/testthat/example/in.R")
42
+ dirty <- readLines(here::here( "tests/testthat/example/in.R") )
43
43
44
44
print_code(dirty)
45
45
```
Original file line number Diff line number Diff line change
1
+
1
2
<!-- README.md is generated from README.Rmd. Please edit that file -->
2
3
styler
3
4
======
@@ -17,7 +18,7 @@ print_code <- function(x) {
17
18
collapse = " \n " ))
18
19
}
19
20
20
- dirty <- readLines(" tests/testthat/example/in.R" )
21
+ dirty <- readLines(here :: here( " tests/testthat/example/in.R" ) )
21
22
22
23
print_code(dirty )
23
24
You can’t perform that action at this time.
0 commit comments