Skip to content

Commit

Permalink
Deploying to gh-pages from @ f6115ad 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jul 12, 2024
1 parent dc05f78 commit 7f35bd4
Show file tree
Hide file tree
Showing 44 changed files with 1,932 additions and 1,910 deletions.
2 changes: 1 addition & 1 deletion CITATION.html
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ <h2 id="toc-title">On this page</h2>
<h1>Citation</h1>
<p>To cite package ‘tinytable’ in publications use:</p>
<p>
Arel-Bundock V (????). <em>tinytable: Simple and Configurable Tables in ‘HTML’, ‘LaTeX’, ‘Markdown’, ‘Word’, ‘PNG’, ‘PDF’, and ‘Typst’ Formats</em>. R package version 0.3.0.25, <a href="https://vincentarelbundock.github.io/tinytable/">https://vincentarelbundock.github.io/tinytable/</a>.
Arel-Bundock V (????). <em>tinytable: Simple and Configurable Tables in ‘HTML’, ‘LaTeX’, ‘Markdown’, ‘Word’, ‘PNG’, ‘PDF’, and ‘Typst’ Formats</em>. R package version 0.3.0.26, <a href="https://vincentarelbundock.github.io/tinytable/">https://vincentarelbundock.github.io/tinytable/</a>.
</p>


Expand Down
1 change: 1 addition & 0 deletions NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ <h3 class="anchored" data-anchor-id="global-options">Global options</h3>
<section id="bugs" class="level3">
<h3 class="anchored" data-anchor-id="bugs">Bugs</h3>
<ul>
<li>Footnotes were center-aligned in some Quarto chunks. Thanks to <a href="https://github.com/aheiss"><span class="citation" data-cites="aheiss">@aheiss</span></a> for report <a href="https://github.com/vincentarelbundock/tinytable/issues/303">#303</a>.</li>
<li><code>replace</code> does not work in LaTeX with <code>format_tt(quarto=TRUE)</code>. Thanks to <a href="https://github.com/cbgoodman"><span class="citation" data-cites="cbgoodman">@cbgoodman</span></a> for Issue <a href="https://github.com/vincentarelbundock/tinytable/issues/263">#263</a>.</li>
<li><code>style_tt(indent)</code> works for LaTeX</li>
<li>Notes were hard-coded to 5 colspan. We now use the actual number of columns in the table. Thanks to <a href="https://github.com/DominikVogel"><span class="citation" data-cites="DominikVogel">@DominikVogel</span></a> for report <a href="https://github.com/vincentarelbundock/tinytable/issues/788">#788</a>.</li>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ <h2 class="anchored" data-anchor-id="first-steps">First steps</h2>
</section>
<section id="tutorial" class="level2">
<h2 class="anchored" data-anchor-id="tutorial">Tutorial</h2>
<p>The <code>tinytable</code> 0.3.0.25 tutorial will take you much further. It is available in two formats:</p>
<p>The <code>tinytable</code> 0.3.0.26 tutorial will take you much further. It is available in two formats:</p>
<ul>
<li><a href="https://vincentarelbundock.github.io/tinytable/vignettes/tinytable_tutorial.pdf">Tutorial (PDF)</a></li>
<li>Tutorial (HTML):
Expand Down
130 changes: 65 additions & 65 deletions man/format_tt.html

Large diffs are not rendered by default.

246 changes: 123 additions & 123 deletions man/group_tt.html

Large diffs are not rendered by default.

92 changes: 46 additions & 46 deletions man/rbind2-tinytable-tinytable-method.html
Original file line number Diff line number Diff line change
Expand Up @@ -483,21 +483,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_atxlikvrvrn0nu79w82t(i, j, css_id) {
var table = document.getElementById("tinytable_atxlikvrvrn0nu79w82t");
function styleCell_x0tta4catqukz1dydxmu(i, j, css_id) {
var table = document.getElementById("tinytable_x0tta4catqukz1dydxmu");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_atxlikvrvrn0nu79w82t');
var table = document.getElementById('tinytable_x0tta4catqukz1dydxmu');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_atxlikvrvrn0nu79w82t(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_atxlikvrvrn0nu79w82t");
function spanCell_x0tta4catqukz1dydxmu(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_x0tta4catqukz1dydxmu");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -523,18 +523,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_atxlikvrvrn0nu79w82t(0, 0, 'tinytable_css_idbg6dfz3kxno7c71q2u1b') })
window.addEventListener('load', function () { styleCell_atxlikvrvrn0nu79w82t(0, 1, 'tinytable_css_idbg6dfz3kxno7c71q2u1b') })
window.addEventListener('load', function () { styleCell_atxlikvrvrn0nu79w82t(0, 2, 'tinytable_css_idbg6dfz3kxno7c71q2u1b') })
window.addEventListener('load', function () { styleCell_atxlikvrvrn0nu79w82t(0, 3, 'tinytable_css_idbg6dfz3kxno7c71q2u1b') })
window.addEventListener('load', function () { styleCell_atxlikvrvrn0nu79w82t(0, 4, 'tinytable_css_idbg6dfz3kxno7c71q2u1b') })
window.addEventListener('load', function () { styleCell_x0tta4catqukz1dydxmu(0, 0, 'tinytable_css_idpt99ul687mrgoj877vni') })
window.addEventListener('load', function () { styleCell_x0tta4catqukz1dydxmu(0, 1, 'tinytable_css_idpt99ul687mrgoj877vni') })
window.addEventListener('load', function () { styleCell_x0tta4catqukz1dydxmu(0, 2, 'tinytable_css_idpt99ul687mrgoj877vni') })
window.addEventListener('load', function () { styleCell_x0tta4catqukz1dydxmu(0, 3, 'tinytable_css_idpt99ul687mrgoj877vni') })
window.addEventListener('load', function () { styleCell_x0tta4catqukz1dydxmu(0, 4, 'tinytable_css_idpt99ul687mrgoj877vni') })
</script>

<style>
.table td.tinytable_css_idbg6dfz3kxno7c71q2u1b, .table th.tinytable_css_idbg6dfz3kxno7c71q2u1b { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idpt99ul687mrgoj877vni, .table th.tinytable_css_idpt99ul687mrgoj877vni { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_atxlikvrvrn0nu79w82t" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_x0tta4catqukz1dydxmu" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -599,21 +599,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_36puwxg0gkqtvj1sx0mb(i, j, css_id) {
var table = document.getElementById("tinytable_36puwxg0gkqtvj1sx0mb");
function styleCell_ehti0nn72n86zdev89rw(i, j, css_id) {
var table = document.getElementById("tinytable_ehti0nn72n86zdev89rw");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_36puwxg0gkqtvj1sx0mb');
var table = document.getElementById('tinytable_ehti0nn72n86zdev89rw');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_36puwxg0gkqtvj1sx0mb(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_36puwxg0gkqtvj1sx0mb");
function spanCell_ehti0nn72n86zdev89rw(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_ehti0nn72n86zdev89rw");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -639,18 +639,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_36puwxg0gkqtvj1sx0mb(0, 0, 'tinytable_css_id9ubcifud1yh3z78shon3') })
window.addEventListener('load', function () { styleCell_36puwxg0gkqtvj1sx0mb(0, 1, 'tinytable_css_id9ubcifud1yh3z78shon3') })
window.addEventListener('load', function () { styleCell_36puwxg0gkqtvj1sx0mb(0, 2, 'tinytable_css_id9ubcifud1yh3z78shon3') })
window.addEventListener('load', function () { styleCell_36puwxg0gkqtvj1sx0mb(0, 3, 'tinytable_css_id9ubcifud1yh3z78shon3') })
window.addEventListener('load', function () { styleCell_36puwxg0gkqtvj1sx0mb(0, 4, 'tinytable_css_id9ubcifud1yh3z78shon3') })
window.addEventListener('load', function () { styleCell_ehti0nn72n86zdev89rw(0, 0, 'tinytable_css_idx85k09p1fd46scujjdy8') })
window.addEventListener('load', function () { styleCell_ehti0nn72n86zdev89rw(0, 1, 'tinytable_css_idx85k09p1fd46scujjdy8') })
window.addEventListener('load', function () { styleCell_ehti0nn72n86zdev89rw(0, 2, 'tinytable_css_idx85k09p1fd46scujjdy8') })
window.addEventListener('load', function () { styleCell_ehti0nn72n86zdev89rw(0, 3, 'tinytable_css_idx85k09p1fd46scujjdy8') })
window.addEventListener('load', function () { styleCell_ehti0nn72n86zdev89rw(0, 4, 'tinytable_css_idx85k09p1fd46scujjdy8') })
</script>

<style>
.table td.tinytable_css_id9ubcifud1yh3z78shon3, .table th.tinytable_css_id9ubcifud1yh3z78shon3 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idx85k09p1fd46scujjdy8, .table th.tinytable_css_idx85k09p1fd46scujjdy8 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_36puwxg0gkqtvj1sx0mb" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_ehti0nn72n86zdev89rw" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -716,21 +716,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_g2ba9d5sazdxzzjw056m(i, j, css_id) {
var table = document.getElementById("tinytable_g2ba9d5sazdxzzjw056m");
function styleCell_yq13t9jayyi5vyfiei02(i, j, css_id) {
var table = document.getElementById("tinytable_yq13t9jayyi5vyfiei02");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_g2ba9d5sazdxzzjw056m');
var table = document.getElementById('tinytable_yq13t9jayyi5vyfiei02');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_g2ba9d5sazdxzzjw056m(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_g2ba9d5sazdxzzjw056m");
function spanCell_yq13t9jayyi5vyfiei02(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_yq13t9jayyi5vyfiei02");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -756,18 +756,18 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_g2ba9d5sazdxzzjw056m(0, 0, 'tinytable_css_idsukcy2nve509bqule14c') })
window.addEventListener('load', function () { styleCell_g2ba9d5sazdxzzjw056m(0, 1, 'tinytable_css_idsukcy2nve509bqule14c') })
window.addEventListener('load', function () { styleCell_g2ba9d5sazdxzzjw056m(0, 2, 'tinytable_css_idsukcy2nve509bqule14c') })
window.addEventListener('load', function () { styleCell_g2ba9d5sazdxzzjw056m(0, 3, 'tinytable_css_idsukcy2nve509bqule14c') })
window.addEventListener('load', function () { styleCell_g2ba9d5sazdxzzjw056m(0, 4, 'tinytable_css_idsukcy2nve509bqule14c') })
window.addEventListener('load', function () { styleCell_yq13t9jayyi5vyfiei02(0, 0, 'tinytable_css_idiv6hxgq8v5bufo45dkzl') })
window.addEventListener('load', function () { styleCell_yq13t9jayyi5vyfiei02(0, 1, 'tinytable_css_idiv6hxgq8v5bufo45dkzl') })
window.addEventListener('load', function () { styleCell_yq13t9jayyi5vyfiei02(0, 2, 'tinytable_css_idiv6hxgq8v5bufo45dkzl') })
window.addEventListener('load', function () { styleCell_yq13t9jayyi5vyfiei02(0, 3, 'tinytable_css_idiv6hxgq8v5bufo45dkzl') })
window.addEventListener('load', function () { styleCell_yq13t9jayyi5vyfiei02(0, 4, 'tinytable_css_idiv6hxgq8v5bufo45dkzl') })
</script>

<style>
.table td.tinytable_css_idsukcy2nve509bqule14c, .table th.tinytable_css_idsukcy2nve509bqule14c { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idiv6hxgq8v5bufo45dkzl, .table th.tinytable_css_idiv6hxgq8v5bufo45dkzl { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_g2ba9d5sazdxzzjw056m" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_yq13t9jayyi5vyfiei02" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down Expand Up @@ -826,21 +826,21 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<!-- preamble start -->

<script>
function styleCell_rt0slg6y77sbnjlc2kth(i, j, css_id) {
var table = document.getElementById("tinytable_rt0slg6y77sbnjlc2kth");
function styleCell_11lq12gbylute7cx2m1w(i, j, css_id) {
var table = document.getElementById("tinytable_11lq12gbylute7cx2m1w");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_rt0slg6y77sbnjlc2kth');
var table = document.getElementById('tinytable_11lq12gbylute7cx2m1w');
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
// newCell.innerText = content;
// this may be unsafe, but innerText does not interpret <br>
newCell.innerHTML = content;
}
function spanCell_rt0slg6y77sbnjlc2kth(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_rt0slg6y77sbnjlc2kth");
function spanCell_11lq12gbylute7cx2m1w(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_11lq12gbylute7cx2m1w");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand All @@ -866,16 +866,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
targetCell.rowSpan = rowspan;
targetCell.colSpan = colspan;
}
window.addEventListener('load', function () { styleCell_rt0slg6y77sbnjlc2kth(0, 0, 'tinytable_css_idtyvw41rktce2macr53ci') })
window.addEventListener('load', function () { styleCell_rt0slg6y77sbnjlc2kth(0, 1, 'tinytable_css_idtyvw41rktce2macr53ci') })
window.addEventListener('load', function () { styleCell_rt0slg6y77sbnjlc2kth(0, 2, 'tinytable_css_idtyvw41rktce2macr53ci') })
window.addEventListener('load', function () { styleCell_11lq12gbylute7cx2m1w(0, 0, 'tinytable_css_id6i7mxp52lwju3l1yl5pb') })
window.addEventListener('load', function () { styleCell_11lq12gbylute7cx2m1w(0, 1, 'tinytable_css_id6i7mxp52lwju3l1yl5pb') })
window.addEventListener('load', function () { styleCell_11lq12gbylute7cx2m1w(0, 2, 'tinytable_css_id6i7mxp52lwju3l1yl5pb') })
</script>

<style>
.table td.tinytable_css_idtyvw41rktce2macr53ci, .table th.tinytable_css_idtyvw41rktce2macr53ci { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_id6i7mxp52lwju3l1yl5pb, .table th.tinytable_css_id6i7mxp52lwju3l1yl5pb { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_rt0slg6y77sbnjlc2kth" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_11lq12gbylute7cx2m1w" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>
</thead><caption>Combine two tiny tables.</caption>
<tbody><tr>
Expand Down
Loading

0 comments on commit 7f35bd4

Please sign in to comment.