We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d307e commit b808c60Copy full SHA for b808c60
2 files changed
news/changelog-1.8.md
@@ -6,6 +6,10 @@ All changes included in 1.8:
6
7
- ([#12598](https://github.com/quarto-dev/quarto-cli/pull/12598)): Ensure `.fragment` on an image with caption applies to whole figure.
8
9
+### `docx`
10
+
11
+- ([#8392](https://github.com/quarto-dev/quarto-cli/issues/8392)): Fix `docx` generation issues in tables
12
13
## Projects
14
15
### `website`
src/resources/filters/layout/docx.lua
@@ -110,11 +110,11 @@ end
110
111
function docxAlign(align)
112
if align == "left" then
113
- return "start"
+ return "left"
114
elseif align == "center" then
115
return "center"
116
elseif align == "right" then
117
- return "end"
+ return "right"
118
else
119
return nil
120
end
0 commit comments