News

0.4.0

Breaking change

HTML tables no longer insert MathJax scripts by default. This behavior could enter in conflict with other MathJax scripts loaded explicitly by the user or automatically by Quarto. Users can revert to the previous behavior by setting a global option:

options(tinytable_html_mathjax = TRUE)

Alternatively, users can insert appropriate scripts directly in their HTML document or as a Quarto literal chunk:

```{=html}
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>
MathJax = {
  tex: {
    inlineMath: [['$', '$'], ['\\(', '\\)']]
  },
  svg: {
    fontCache: 'global'
  }
};
</script>
```

General

HTML

LaTeX

Typst

Global options

Bugs

0.3.0

Breaking change:

tt():

format_tt():

theme_tt():

style_tt():

save_tt():

Typst:

Misc:

Bug fixes:

0.2.1

0.2.0

New features:

Minor:

Bugs:

0.1.0

New function theme_tt():

format_tt():

Typst format:

Misc:

Breaking changes:

Bugs:

0.0.5

0.0.4

New:

Bugfix:

0.0.3

New:

0.0.2

Improvements:

Bug fixes:

Documentation:

0.0.1

Initial package release. Yay!