Skip to content

Commit

Permalink
issue #226
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Mar 31, 2024
1 parent a671270 commit 07a5be8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/settings_quarto_website.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
fs::path_join(c(path, "_quarto/man")),
pattern = "\\.qmd$", full.names = TRUE)

fn_man <- gsub(".*_quarto.", "", fn_man)
# issue #266: add word boundary check
fn_man <- gsub(".*\\b_quarto.", "", fn_man)
fn_vignettes <- gsub(".*_quarto.", "", fn_vignettes)

yml <- paste(sidebar, collapse = "\n")
Expand Down

0 comments on commit 07a5be8

Please sign in to comment.