Skip to content

Commit

Permalink
Deploying to gh-pages from @ 86e0637 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jul 13, 2024
1 parent 7f35bd4 commit 7fdbfb3
Show file tree
Hide file tree
Showing 44 changed files with 1,932 additions and 1,931 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.26, <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.27, <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 @@ -445,6 +445,7 @@ <h3 class="anchored" data-anchor-id="bugs">Bugs</h3>
<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>
<li>Do not suppress labels when inserting notes. Thanks to <a href="https://github.com/cportner"><span class="citation" data-cites="cportner">@cportner</span></a> for Issue <a href="https://github.com/vincentarelbundock/tinytable/issues/290">#290</a>.</li>
<li><code>format_tt()</code> on a table without column names. 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/306">#306</a>.</li>
</ul>
</section>
</section>
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.26 tutorial will take you much further. It is available in two formats:</p>
<p>The <code>tinytable</code> 0.3.0.27 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_x0tta4catqukz1dydxmu(i, j, css_id) {
var table = document.getElementById("tinytable_x0tta4catqukz1dydxmu");
function styleCell_7axdqn3j3uroc1509qyq(i, j, css_id) {
var table = document.getElementById("tinytable_7axdqn3j3uroc1509qyq");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_x0tta4catqukz1dydxmu');
var table = document.getElementById('tinytable_7axdqn3j3uroc1509qyq');
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_x0tta4catqukz1dydxmu(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_x0tta4catqukz1dydxmu");
function spanCell_7axdqn3j3uroc1509qyq(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_7axdqn3j3uroc1509qyq");
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_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') })
window.addEventListener('load', function () { styleCell_7axdqn3j3uroc1509qyq(0, 0, 'tinytable_css_idaiuva61vcl2equpu1xe3') })
window.addEventListener('load', function () { styleCell_7axdqn3j3uroc1509qyq(0, 1, 'tinytable_css_idaiuva61vcl2equpu1xe3') })
window.addEventListener('load', function () { styleCell_7axdqn3j3uroc1509qyq(0, 2, 'tinytable_css_idaiuva61vcl2equpu1xe3') })
window.addEventListener('load', function () { styleCell_7axdqn3j3uroc1509qyq(0, 3, 'tinytable_css_idaiuva61vcl2equpu1xe3') })
window.addEventListener('load', function () { styleCell_7axdqn3j3uroc1509qyq(0, 4, 'tinytable_css_idaiuva61vcl2equpu1xe3') })
</script>

<style>
.table td.tinytable_css_idpt99ul687mrgoj877vni, .table th.tinytable_css_idpt99ul687mrgoj877vni { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idaiuva61vcl2equpu1xe3, .table th.tinytable_css_idaiuva61vcl2equpu1xe3 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_x0tta4catqukz1dydxmu" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_7axdqn3j3uroc1509qyq" 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_ehti0nn72n86zdev89rw(i, j, css_id) {
var table = document.getElementById("tinytable_ehti0nn72n86zdev89rw");
function styleCell_7cwnzxalezkxv53irsb7(i, j, css_id) {
var table = document.getElementById("tinytable_7cwnzxalezkxv53irsb7");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_ehti0nn72n86zdev89rw');
var table = document.getElementById('tinytable_7cwnzxalezkxv53irsb7');
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_ehti0nn72n86zdev89rw(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_ehti0nn72n86zdev89rw");
function spanCell_7cwnzxalezkxv53irsb7(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_7cwnzxalezkxv53irsb7");
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_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') })
window.addEventListener('load', function () { styleCell_7cwnzxalezkxv53irsb7(0, 0, 'tinytable_css_idipwbi68i9341zqr9t2fx') })
window.addEventListener('load', function () { styleCell_7cwnzxalezkxv53irsb7(0, 1, 'tinytable_css_idipwbi68i9341zqr9t2fx') })
window.addEventListener('load', function () { styleCell_7cwnzxalezkxv53irsb7(0, 2, 'tinytable_css_idipwbi68i9341zqr9t2fx') })
window.addEventListener('load', function () { styleCell_7cwnzxalezkxv53irsb7(0, 3, 'tinytable_css_idipwbi68i9341zqr9t2fx') })
window.addEventListener('load', function () { styleCell_7cwnzxalezkxv53irsb7(0, 4, 'tinytable_css_idipwbi68i9341zqr9t2fx') })
</script>

<style>
.table td.tinytable_css_idx85k09p1fd46scujjdy8, .table th.tinytable_css_idx85k09p1fd46scujjdy8 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idipwbi68i9341zqr9t2fx, .table th.tinytable_css_idipwbi68i9341zqr9t2fx { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_ehti0nn72n86zdev89rw" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_7cwnzxalezkxv53irsb7" 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_yq13t9jayyi5vyfiei02(i, j, css_id) {
var table = document.getElementById("tinytable_yq13t9jayyi5vyfiei02");
function styleCell_0tg0wnvxteevakzpafwr(i, j, css_id) {
var table = document.getElementById("tinytable_0tg0wnvxteevakzpafwr");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_yq13t9jayyi5vyfiei02');
var table = document.getElementById('tinytable_0tg0wnvxteevakzpafwr');
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_yq13t9jayyi5vyfiei02(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_yq13t9jayyi5vyfiei02");
function spanCell_0tg0wnvxteevakzpafwr(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_0tg0wnvxteevakzpafwr");
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_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') })
window.addEventListener('load', function () { styleCell_0tg0wnvxteevakzpafwr(0, 0, 'tinytable_css_idf6h5vg2eegbzsv9c4i4h') })
window.addEventListener('load', function () { styleCell_0tg0wnvxteevakzpafwr(0, 1, 'tinytable_css_idf6h5vg2eegbzsv9c4i4h') })
window.addEventListener('load', function () { styleCell_0tg0wnvxteevakzpafwr(0, 2, 'tinytable_css_idf6h5vg2eegbzsv9c4i4h') })
window.addEventListener('load', function () { styleCell_0tg0wnvxteevakzpafwr(0, 3, 'tinytable_css_idf6h5vg2eegbzsv9c4i4h') })
window.addEventListener('load', function () { styleCell_0tg0wnvxteevakzpafwr(0, 4, 'tinytable_css_idf6h5vg2eegbzsv9c4i4h') })
</script>

<style>
.table td.tinytable_css_idiv6hxgq8v5bufo45dkzl, .table th.tinytable_css_idiv6hxgq8v5bufo45dkzl { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idf6h5vg2eegbzsv9c4i4h, .table th.tinytable_css_idf6h5vg2eegbzsv9c4i4h { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_yq13t9jayyi5vyfiei02" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_0tg0wnvxteevakzpafwr" 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_11lq12gbylute7cx2m1w(i, j, css_id) {
var table = document.getElementById("tinytable_11lq12gbylute7cx2m1w");
function styleCell_zev9iuu26fka7lw3g2gu(i, j, css_id) {
var table = document.getElementById("tinytable_zev9iuu26fka7lw3g2gu");
table.rows[i].cells[j].classList.add(css_id);
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_11lq12gbylute7cx2m1w');
var table = document.getElementById('tinytable_zev9iuu26fka7lw3g2gu');
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_11lq12gbylute7cx2m1w(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_11lq12gbylute7cx2m1w");
function spanCell_zev9iuu26fka7lw3g2gu(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_zev9iuu26fka7lw3g2gu");
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_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') })
window.addEventListener('load', function () { styleCell_zev9iuu26fka7lw3g2gu(0, 0, 'tinytable_css_idjtz453yqfa2v9l0v6lay') })
window.addEventListener('load', function () { styleCell_zev9iuu26fka7lw3g2gu(0, 1, 'tinytable_css_idjtz453yqfa2v9l0v6lay') })
window.addEventListener('load', function () { styleCell_zev9iuu26fka7lw3g2gu(0, 2, 'tinytable_css_idjtz453yqfa2v9l0v6lay') })
</script>

<style>
.table td.tinytable_css_id6i7mxp52lwju3l1yl5pb, .table th.tinytable_css_id6i7mxp52lwju3l1yl5pb { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_idjtz453yqfa2v9l0v6lay, .table th.tinytable_css_idjtz453yqfa2v9l0v6lay { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_11lq12gbylute7cx2m1w" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_zev9iuu26fka7lw3g2gu" 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 7fdbfb3

Please sign in to comment.