Skip to content

Commit

Permalink
Fix the fix that fixed the last midrule problem described in #266
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrandin committed Oct 30, 2024
1 parent 9d31feb commit 82e875a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/fix-envs.R
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ fix_envs <- function(x,
# backslashes, we just remove them here without understanding why they were
# added. This should not affect other parts of the build as it is a simple
# regular expression replace
x <- gsub("midrule\\\\", "midrule", x)
x <- gsub("midrule\\\\ +", "midrule", x)

x
}
Expand Down

0 comments on commit 82e875a

Please sign in to comment.