Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgohel committed Oct 20, 2020
1 parent e92de82 commit 463d56f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Package: officer
Type: Package
Title: Manipulation of Microsoft Word and PowerPoint Documents
Version: 0.3.15.006
Version: 0.3.15.007
Authors@R: c(
person("David", "Gohel", role = c("aut", "cre"),
email = "david.gohel@ardata.fr"),
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Expand Up @@ -8,6 +8,8 @@
## Issues

* fix #333: issue with &, <, > in `to_wml.block_table`.
* fix https://github.com/davidgohel/officedown/issues/41: when a space was in the path, pandoc send the short path format
instead of the real path name, it needed to be transformed with `normalizePath`.

## Change

Expand Down
2 changes: 1 addition & 1 deletion R/knitr_utils.R
Expand Up @@ -76,7 +76,7 @@ get_reference_value <- function(format = NULL) {
} else {
reference_data <- get_default_pandoc_data_file(format = format)
}
return(reference_data)
return(normalizePath(reference_data, winslash = "/"))
}


Expand Down

0 comments on commit 463d56f

Please sign in to comment.