Skip to content

Commit

Permalink
Deploying to gh-pages from @ 9b015b0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Nov 14, 2024
1 parent fb037a6 commit 96d5bbc
Show file tree
Hide file tree
Showing 41 changed files with 1,661 additions and 1,661 deletions.
162 changes: 81 additions & 81 deletions man/format_tt.html

Large diffs are not rendered by default.

222 changes: 111 additions & 111 deletions man/group_tt.html

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions man/rbind2-tinytable-tinytable-method.html

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions man/theme_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_mdh9s3dkz5uu7tnuj42q(i, j, css_id) {
var table = document.getElementById("tinytable_mdh9s3dkz5uu7tnuj42q");
function styleCell_bmcde4duisz1zcxii1st(i, j, css_id) {
var table = document.getElementById("tinytable_bmcde4duisz1zcxii1st");
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 @@ -597,16 +597,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_mdh9s3dkz5uu7tnuj42q');
var table = document.getElementById('tinytable_bmcde4duisz1zcxii1st');
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_mdh9s3dkz5uu7tnuj42q(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_mdh9s3dkz5uu7tnuj42q");
function spanCell_bmcde4duisz1zcxii1st(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_bmcde4duisz1zcxii1st");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -636,26 +636,26 @@ <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: 4, j: 0 }, { i: 0, j: 1 }, { i: 4, j: 1 }, { i: 0, j: 2 }, { i: 4, j: 2 }, { i: 0, j: 3 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_likw2d1nzm2hdwwjtr7v',},
{ positions: [ { i: 1, j: 0 }, { i: 3, j: 0 }, { i: 1, j: 1 }, { i: 3, j: 1 }, { i: 1, j: 2 }, { i: 3, j: 2 }, { i: 1, j: 3 }, { i: 3, j: 3 }, ], css_id: 'tinytable_css_die175u7lwvec943qey1',},
{ positions: [ { i: 0, j: 0 }, { i: 4, j: 0 }, { i: 0, j: 1 }, { i: 4, j: 1 }, { i: 0, j: 2 }, { i: 4, j: 2 }, { i: 0, j: 3 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_vc0y8h6juspnicmm7vw3',},
{ positions: [ { i: 1, j: 0 }, { i: 3, j: 0 }, { i: 1, j: 1 }, { i: 3, j: 1 }, { i: 1, j: 2 }, { i: 3, j: 2 }, { i: 1, j: 3 }, { i: 3, j: 3 }, ], css_id: 'tinytable_css_gu41s0z4xtv8ine3yd8o',},
];

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

<style>
/* tinytable css entries after */
.table td.tinytable_css_likw2d1nzm2hdwwjtr7v, .table th.tinytable_css_likw2d1nzm2hdwwjtr7v { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_die175u7lwvec943qey1, .table th.tinytable_css_die175u7lwvec943qey1 { background-color: #ededed; }
.table td.tinytable_css_vc0y8h6juspnicmm7vw3, .table th.tinytable_css_vc0y8h6juspnicmm7vw3 { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_gu41s0z4xtv8ine3yd8o, .table th.tinytable_css_gu41s0z4xtv8ine3yd8o { background-color: #ededed; }
</style>
<div class="container">
<table class="table table-striped" id="tinytable_mdh9s3dkz5uu7tnuj42q" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_bmcde4duisz1zcxii1st" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

<tr>
Expand Down Expand Up @@ -702,8 +702,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_3yi5dxau1x7ry8w9jvod(i, j, css_id) {
var table = document.getElementById("tinytable_3yi5dxau1x7ry8w9jvod");
function styleCell_l9n0ua9tp7vbkob4h1mf(i, j, css_id) {
var table = document.getElementById("tinytable_l9n0ua9tp7vbkob4h1mf");
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 @@ -713,16 +713,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_3yi5dxau1x7ry8w9jvod');
var table = document.getElementById('tinytable_l9n0ua9tp7vbkob4h1mf');
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_3yi5dxau1x7ry8w9jvod(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_3yi5dxau1x7ry8w9jvod");
function spanCell_l9n0ua9tp7vbkob4h1mf(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_l9n0ua9tp7vbkob4h1mf");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -752,28 +752,28 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
window.addEventListener('load', function () {
var cellsToStyle = [
// tinytable style arrays after
{ positions: [ { i: 1, j: 0 }, { i: 3, j: 0 }, { i: 1, j: 1 }, { i: 3, j: 1 }, { i: 1, j: 2 }, { i: 3, j: 2 }, { i: 1, j: 3 }, { i: 3, j: 3 }, ], css_id: 'tinytable_css_v6o6zag45chizvdcoq76',},
{ positions: [ { i: 0, j: 0 }, { i: 0, j: 1 }, { i: 0, j: 2 }, { i: 0, j: 3 }, ], css_id: 'tinytable_css_2exdmirm9nsim47skff4',},
{ positions: [ { i: 4, j: 0 }, { i: 4, j: 1 }, { i: 4, j: 2 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_0vhmrfsj9o39ayvibtza',},
{ positions: [ { i: 0, j: 0 }, { i: 0, j: 1 }, { i: 0, j: 2 }, { i: 0, j: 3 }, ], css_id: 'tinytable_css_tcwu4slbg1rf6bfl91fi',},
{ positions: [ { i: 1, j: 0 }, { i: 3, j: 0 }, { i: 1, j: 1 }, { i: 3, j: 1 }, { i: 1, j: 2 }, { i: 3, j: 2 }, { i: 1, j: 3 }, { i: 3, j: 3 }, ], css_id: 'tinytable_css_nohxgpeunr0vmpt3p6t5',},
{ positions: [ { i: 4, j: 0 }, { i: 4, j: 1 }, { i: 4, j: 2 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_agn6mo4cmeoeh9p5wpe9',},
];

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

<style>
/* tinytable css entries after */
.table td.tinytable_css_v6o6zag45chizvdcoq76, .table th.tinytable_css_v6o6zag45chizvdcoq76 { background-color: #ededed; }
.table td.tinytable_css_2exdmirm9nsim47skff4, .table th.tinytable_css_2exdmirm9nsim47skff4 { border-top: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.05em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_0vhmrfsj9o39ayvibtza, .table th.tinytable_css_0vhmrfsj9o39ayvibtza { border-bottom: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_tcwu4slbg1rf6bfl91fi, .table th.tinytable_css_tcwu4slbg1rf6bfl91fi { border-top: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.05em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_nohxgpeunr0vmpt3p6t5, .table th.tinytable_css_nohxgpeunr0vmpt3p6t5 { background-color: #ededed; }
.table td.tinytable_css_agn6mo4cmeoeh9p5wpe9, .table th.tinytable_css_agn6mo4cmeoeh9p5wpe9 { border-bottom: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-striped" id="tinytable_3yi5dxau1x7ry8w9jvod" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_l9n0ua9tp7vbkob4h1mf" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

<tr>
Expand Down
Loading

0 comments on commit 96d5bbc

Please sign in to comment.