Changelog
3.1.0 - 2025-02-20
Added
header
function to typst output such that the header section can repeat after page breaks #79.Added
simple_table
function for the display of raw tabular data #76.Changed html output to use a unique id instead of a class for the table so that SummaryTables' CSS takes priority over class-based settings from Documenter and others. This fixes the look of SummaryTables within Documenter dark mode, for example #77.
3.0.3 - 2025-01-31
Added
show
method forMIME"QuartoNotebookRunner/typst"
to support typst directly in the native quarto julia engine #69.Allowed
String
s as column identifiers in addition toSymbol
s #63.Made HTML tables dark mode compatible by reusing foreground color for the lines #62.
3.0.2 - 2024-11-27
- Added extra escape characters to Typst #54.
3.0.1 - 2024-10-24
Added single-argument method to
table_one
which summarizes all columns in the passed table except those used for grouping #48.Fixed issue with using
missing
as a group intable_one
. This PR also removes redundant group totals if there's just one subgroup to do a total over #47.
3.0.0 - 2024-09-23
Breaking Footnotes are by default separated with linebreaks now. This can be changed by setting the new
Table
optionlinebreak_footnotes = false
#34.Breaking Changed
show_overall
keyword oftable_one
toshow_total
. The name of all total columns was changed from"Overall"
to"Total"
as well but this can be changed using the newtotal_name
keyword.Added ability to show "Total" statistics for subgroups in
table_one
#30.Fixed tagging of header rows in docx output, such that the header section is now repeated across pages as expected #32.
2.0.2 - 2024-09-16
- Fixed issue where cells would not merge if they stored a
Multiline
value #29.
2.0.1 - 2024-09-16
- Fixed incorrect order of column group keys in
summarytable
andlistingtable
when some row/col group combinations were missing #25.
2.0.0 - 2024-05-03
- Breaking Changed generated Typst code to use the native table functionality available starting with Typst v0.11. Visual output should not change.