File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/resources/filters/layout Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ All changes included in 1.8:
6
6
7
7
- ([ #12598 ] ( https://github.com/quarto-dev/quarto-cli/pull/12598 ) ): Ensure ` .fragment ` on an image with caption applies to whole figure.
8
8
9
+ ### ` docx `
10
+
11
+ - ([ #8392 ] ( https://github.com/quarto-dev/quarto-cli/issues/8392 ) ): Fix ` docx ` generation issues in tables
12
+
9
13
## Projects
10
14
11
15
### ` website `
Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ end
110
110
111
111
function docxAlign (align )
112
112
if align == " left" then
113
- return " start "
113
+ return " left "
114
114
elseif align == " center" then
115
115
return " center"
116
116
elseif align == " right" then
117
- return " end "
117
+ return " right "
118
118
else
119
119
return nil
120
120
end
You can’t perform that action at this time.
0 commit comments