Skip to content

Commit

Permalink
Deploying to gh-pages from @ 9cd7c84 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Nov 4, 2024
1 parent fa17d8b commit 96f9e7b
Show file tree
Hide file tree
Showing 55 changed files with 2,907 additions and 1,822 deletions.
4 changes: 4 additions & 0 deletions CITATION.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions LICENSE.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@
<li>
<a class="dropdown-item" href="./vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="./vignettes/faq.html">
Expand Down
134 changes: 69 additions & 65 deletions man/format_tt.html

Large diffs are not rendered by default.

198 changes: 101 additions & 97 deletions man/group_tt.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions man/plot_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions man/print.tinytable.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
76 changes: 40 additions & 36 deletions man/rbind2-tinytable-tinytable-method.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down Expand Up @@ -488,8 +492,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_lgq7p0fohkw6w59rpgmm(i, j, css_id) {
var table = document.getElementById("tinytable_lgq7p0fohkw6w59rpgmm");
function styleCell_d48dnzhtlbexlbxx155i(i, j, css_id) {
var table = document.getElementById("tinytable_d48dnzhtlbexlbxx155i");
var cell = table.rows[i]?.cells[j]; // Safe navigation to avoid errors
if (cell) {
console.log(`Styling cell at (${i}, ${j}) with class ${css_id}`);
Expand All @@ -499,16 +503,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_lgq7p0fohkw6w59rpgmm');
var table = document.getElementById('tinytable_d48dnzhtlbexlbxx155i');
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_lgq7p0fohkw6w59rpgmm(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_lgq7p0fohkw6w59rpgmm");
function spanCell_d48dnzhtlbexlbxx155i(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_d48dnzhtlbexlbxx155i");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -538,24 +542,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
window.addEventListener('load', function () {
var cellsToStyle = [
// tinytable style arrays after
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, { i: 0, j: 3 }, { i: 6, j: 3 }, { i: 0, j: 4 }, { i: 6, j: 4 }, ], css_id: 'tinytable_css_hq3ruo0xuo66ujsx64fz',},
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, { i: 0, j: 3 }, { i: 6, j: 3 }, { i: 0, j: 4 }, { i: 6, j: 4 }, ], css_id: 'tinytable_css_iv34idptbqt8m4nmoku1',},
];

// Loop over the arrays to style the cells
cellsToStyle.forEach(function (group) {
group.positions.forEach(function (cell) {
styleCell_lgq7p0fohkw6w59rpgmm(cell.i, cell.j, group.css_id);
styleCell_d48dnzhtlbexlbxx155i(cell.i, cell.j, group.css_id);
});
});
});
</script>

<style>
/* tinytable css entries after */
.table td.tinytable_css_hq3ruo0xuo66ujsx64fz, .table th.tinytable_css_hq3ruo0xuo66ujsx64fz { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_iv34idptbqt8m4nmoku1, .table th.tinytable_css_iv34idptbqt8m4nmoku1 { border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_lgq7p0fohkw6w59rpgmm" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_d48dnzhtlbexlbxx155i" 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 @@ -621,8 +625,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_u5jn5d2rpmanwl46ity8(i, j, css_id) {
var table = document.getElementById("tinytable_u5jn5d2rpmanwl46ity8");
function styleCell_r048ovtrthoxv817r2he(i, j, css_id) {
var table = document.getElementById("tinytable_r048ovtrthoxv817r2he");
var cell = table.rows[i]?.cells[j]; // Safe navigation to avoid errors
if (cell) {
console.log(`Styling cell at (${i}, ${j}) with class ${css_id}`);
Expand All @@ -632,16 +636,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_u5jn5d2rpmanwl46ity8');
var table = document.getElementById('tinytable_r048ovtrthoxv817r2he');
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_u5jn5d2rpmanwl46ity8(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_u5jn5d2rpmanwl46ity8");
function spanCell_r048ovtrthoxv817r2he(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_r048ovtrthoxv817r2he");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -671,24 +675,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
window.addEventListener('load', function () {
var cellsToStyle = [
// tinytable style arrays after
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, { i: 0, j: 3 }, { i: 6, j: 3 }, { i: 0, j: 4 }, { i: 6, j: 4 }, ], css_id: 'tinytable_css_1h8owcnto7fawaqsp9kh',},
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, { i: 0, j: 3 }, { i: 6, j: 3 }, { i: 0, j: 4 }, { i: 6, j: 4 }, ], css_id: 'tinytable_css_xxloitwotuh3r99u016l',},
];

// Loop over the arrays to style the cells
cellsToStyle.forEach(function (group) {
group.positions.forEach(function (cell) {
styleCell_u5jn5d2rpmanwl46ity8(cell.i, cell.j, group.css_id);
styleCell_r048ovtrthoxv817r2he(cell.i, cell.j, group.css_id);
});
});
});
</script>

<style>
/* tinytable css entries after */
.table td.tinytable_css_1h8owcnto7fawaqsp9kh, .table th.tinytable_css_1h8owcnto7fawaqsp9kh { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_xxloitwotuh3r99u016l, .table th.tinytable_css_xxloitwotuh3r99u016l { border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_u5jn5d2rpmanwl46ity8" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_r048ovtrthoxv817r2he" 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 @@ -755,8 +759,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_6wbx6dz47n6zl28yb11d(i, j, css_id) {
var table = document.getElementById("tinytable_6wbx6dz47n6zl28yb11d");
function styleCell_3u2n7xg6a3eljoxdtfta(i, j, css_id) {
var table = document.getElementById("tinytable_3u2n7xg6a3eljoxdtfta");
var cell = table.rows[i]?.cells[j]; // Safe navigation to avoid errors
if (cell) {
console.log(`Styling cell at (${i}, ${j}) with class ${css_id}`);
Expand All @@ -766,16 +770,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_6wbx6dz47n6zl28yb11d');
var table = document.getElementById('tinytable_3u2n7xg6a3eljoxdtfta');
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_6wbx6dz47n6zl28yb11d(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_6wbx6dz47n6zl28yb11d");
function spanCell_3u2n7xg6a3eljoxdtfta(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_3u2n7xg6a3eljoxdtfta");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -805,24 +809,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
window.addEventListener('load', function () {
var cellsToStyle = [
// tinytable style arrays after
{ positions: [ { i: 0, j: 0 }, { i: 5, j: 0 }, { i: 0, j: 1 }, { i: 5, j: 1 }, { i: 0, j: 2 }, { i: 5, j: 2 }, { i: 0, j: 3 }, { i: 5, j: 3 }, { i: 0, j: 4 }, { i: 5, j: 4 }, ], css_id: 'tinytable_css_ibf0exry9gh97ulov321',},
{ positions: [ { i: 0, j: 0 }, { i: 5, j: 0 }, { i: 0, j: 1 }, { i: 5, j: 1 }, { i: 0, j: 2 }, { i: 5, j: 2 }, { i: 0, j: 3 }, { i: 5, j: 3 }, { i: 0, j: 4 }, { i: 5, j: 4 }, ], css_id: 'tinytable_css_5dzcgpmc2r2dlqj1atww',},
];

// Loop over the arrays to style the cells
cellsToStyle.forEach(function (group) {
group.positions.forEach(function (cell) {
styleCell_6wbx6dz47n6zl28yb11d(cell.i, cell.j, group.css_id);
styleCell_3u2n7xg6a3eljoxdtfta(cell.i, cell.j, group.css_id);
});
});
});
</script>

<style>
/* tinytable css entries after */
.table td.tinytable_css_ibf0exry9gh97ulov321, .table th.tinytable_css_ibf0exry9gh97ulov321 { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_5dzcgpmc2r2dlqj1atww, .table th.tinytable_css_5dzcgpmc2r2dlqj1atww { border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_6wbx6dz47n6zl28yb11d" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_3u2n7xg6a3eljoxdtfta" 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 @@ -882,8 +886,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_6ol5bgxe4rk3b2ow5rjk(i, j, css_id) {
var table = document.getElementById("tinytable_6ol5bgxe4rk3b2ow5rjk");
function styleCell_h6wvbnscglsxa5bqma59(i, j, css_id) {
var table = document.getElementById("tinytable_h6wvbnscglsxa5bqma59");
var cell = table.rows[i]?.cells[j]; // Safe navigation to avoid errors
if (cell) {
console.log(`Styling cell at (${i}, ${j}) with class ${css_id}`);
Expand All @@ -893,16 +897,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_6ol5bgxe4rk3b2ow5rjk');
var table = document.getElementById('tinytable_h6wvbnscglsxa5bqma59');
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_6ol5bgxe4rk3b2ow5rjk(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_6ol5bgxe4rk3b2ow5rjk");
function spanCell_h6wvbnscglsxa5bqma59(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_h6wvbnscglsxa5bqma59");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -932,24 +936,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
window.addEventListener('load', function () {
var cellsToStyle = [
// tinytable style arrays after
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, ], css_id: 'tinytable_css_inm5hz7txhcs3womvewu',},
{ positions: [ { i: 0, j: 0 }, { i: 6, j: 0 }, { i: 0, j: 1 }, { i: 6, j: 1 }, { i: 0, j: 2 }, { i: 6, j: 2 }, ], css_id: 'tinytable_css_vm76t9rfoezcnmdktw7x',},
];

// Loop over the arrays to style the cells
cellsToStyle.forEach(function (group) {
group.positions.forEach(function (cell) {
styleCell_6ol5bgxe4rk3b2ow5rjk(cell.i, cell.j, group.css_id);
styleCell_h6wvbnscglsxa5bqma59(cell.i, cell.j, group.css_id);
});
});
});
</script>

<style>
/* tinytable css entries after */
.table td.tinytable_css_inm5hz7txhcs3womvewu, .table th.tinytable_css_inm5hz7txhcs3womvewu { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_vm76t9rfoezcnmdktw7x, .table th.tinytable_css_vm76t9rfoezcnmdktw7x { border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_6ol5bgxe4rk3b2ow5rjk" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_h6wvbnscglsxa5bqma59" 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
4 changes: 4 additions & 0 deletions man/save_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
4 changes: 4 additions & 0 deletions man/style_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@
<li>
<a class="dropdown-item" href="../vignettes/options.html">
<span class="dropdown-text">Available Options</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/notebooks.html">
<span class="dropdown-text">Notebooks (Quarto, Rmarkdown, Bookdown, etc.)</span></a>
</li>
<li>
<a class="dropdown-item" href="../vignettes/faq.html">
Expand Down
Loading

0 comments on commit 96f9e7b

Please sign in to comment.