Skip to content

Commit

Permalink
Issue #904
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Sep 16, 2023
1 parent 680e9ba commit 59f42f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/utils/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ rd2qmd = function(src) {
# first column (odd entries) of table in Arguments should not be wrapped
idx = grep("<td>", tmp)
idx = idx[seq_along(idx) %% 2 == 1]
tmp[idx] = sub("<td>", '<td style = "white-space: nowrap; font-family: monospace;>"', tmp[idx])
tmp[idx] = sub("<td>", '<td style = "white-space: nowrap; font-family: monospace; vertical-align: top">', tmp[idx])

# math in Equivalence section
idx = grepl("<.code", tmp)
Expand Down

0 comments on commit 59f42f4

Please sign in to comment.