Skip to content

Commit b808c60

Browse files
committed
port #8392 to 1.8
1 parent 05d307e commit b808c60

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

news/changelog-1.8.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All changes included in 1.8:
66

77
- ([#12598](https://github.com/quarto-dev/quarto-cli/pull/12598)): Ensure `.fragment` on an image with caption applies to whole figure.
88

9+
### `docx`
10+
11+
- ([#8392](https://github.com/quarto-dev/quarto-cli/issues/8392)): Fix `docx` generation issues in tables
12+
913
## Projects
1014

1115
### `website`

src/resources/filters/layout/docx.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ end
110110

111111
function docxAlign(align)
112112
if align == "left" then
113-
return "start"
113+
return "left"
114114
elseif align == "center" then
115115
return "center"
116116
elseif align == "right" then
117-
return "end"
117+
return "right"
118118
else
119119
return nil
120120
end

0 commit comments

Comments
 (0)