Skip to content

Commit

Permalink
Deploying to gh-pages from @ 9e3e75a 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Dec 27, 2024
1 parent eb9e338 commit db82959
Show file tree
Hide file tree
Showing 45 changed files with 1,669 additions and 1,668 deletions.
2 changes: 1 addition & 1 deletion CITATION.html
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,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.6.1.4, <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.6.1.5, <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 @@ -418,6 +418,7 @@ <h2 class="anchored" data-anchor-id="development">Development</h2>
<p>Bugs:</p>
<ul>
<li><code>save_tt("file.pdf")</code> works with colors. Thanks to <a href="https://github.com/olivedv"><span class="citation" data-cites="olivedv">@olivedv</span></a> for the report and solution <a href="https://github.com/vincentarelbundock/tinytable/issues/395">#395</a>.</li>
<li><code>group_tt(i=vec)</code>: <code>vec</code> can be a factor vector</li>
</ul>
<p>New:</p>
<ul>
Expand Down
Binary file modified freeze.rds
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,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.6.1.4 tutorial will take you much further. It is available in two formats:</p>
<p>The <code>tinytable</code> 0.6.1.5 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
164 changes: 82 additions & 82 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 @@ -594,8 +594,8 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

<script>

function styleCell_5i2j9gr3rn6hqrotz8kr(i, j, css_id) {
var table = document.getElementById("tinytable_5i2j9gr3rn6hqrotz8kr");
function styleCell_mpcy4r2z8t89ofj987im(i, j, css_id) {
var table = document.getElementById("tinytable_mpcy4r2z8t89ofj987im");
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 @@ -605,16 +605,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_5i2j9gr3rn6hqrotz8kr');
var table = document.getElementById('tinytable_mpcy4r2z8t89ofj987im');
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_5i2j9gr3rn6hqrotz8kr(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_5i2j9gr3rn6hqrotz8kr");
function spanCell_mpcy4r2z8t89ofj987im(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_mpcy4r2z8t89ofj987im");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -644,26 +644,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_gme9is4bvibcldeydv8w',},
{ 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_etmsrt4cnyiaz0og35xm',},
{ 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_dx6ls6cnhffjub6p4rga',},
{ 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_bnlhgfw5s5d80fx6s55q',},
];

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

<style>
/* tinytable css entries after */
.table td.tinytable_css_gme9is4bvibcldeydv8w, .table th.tinytable_css_gme9is4bvibcldeydv8w { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_etmsrt4cnyiaz0og35xm, .table th.tinytable_css_etmsrt4cnyiaz0og35xm { background-color: #ededed; }
.table td.tinytable_css_dx6ls6cnhffjub6p4rga, .table th.tinytable_css_dx6ls6cnhffjub6p4rga { border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_bnlhgfw5s5d80fx6s55q, .table th.tinytable_css_bnlhgfw5s5d80fx6s55q { background-color: #ededed; }
</style>
<div class="container">
<table class="table table-striped" id="tinytable_5i2j9gr3rn6hqrotz8kr" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_mpcy4r2z8t89ofj987im" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

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

<script>

function styleCell_1jzxid1t2mk270mjkx8x(i, j, css_id) {
var table = document.getElementById("tinytable_1jzxid1t2mk270mjkx8x");
function styleCell_ffs928durvkwch4son4q(i, j, css_id) {
var table = document.getElementById("tinytable_ffs928durvkwch4son4q");
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 @@ -721,16 +721,16 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
}
}
function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_1jzxid1t2mk270mjkx8x');
var table = document.getElementById('tinytable_ffs928durvkwch4son4q');
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_1jzxid1t2mk270mjkx8x(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_1jzxid1t2mk270mjkx8x");
function spanCell_ffs928durvkwch4son4q(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_ffs928durvkwch4son4q");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -760,28 +760,28 @@ <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: 0, j: 1 }, { i: 0, j: 2 }, { i: 0, j: 3 }, ], css_id: 'tinytable_css_orzo55y4waukjqyyi6oc',},
{ 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_cw9wrdh0kduq3z5q00nc',},
{ positions: [ { i: 4, j: 0 }, { i: 4, j: 1 }, { i: 4, j: 2 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_9aic5pm6cj612hpwz8h8',},
{ positions: [ { i: 0, j: 0 }, { i: 0, j: 1 }, { i: 0, j: 2 }, { i: 0, j: 3 }, ], css_id: 'tinytable_css_zv39lxzrd682v0v72jmm',},
{ 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_byapduawfvx23xzyr978',},
{ positions: [ { i: 4, j: 0 }, { i: 4, j: 1 }, { i: 4, j: 2 }, { i: 4, j: 3 }, ], css_id: 'tinytable_css_7qwqvfjgm9utozwzp158',},
];

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

<style>
/* tinytable css entries after */
.table td.tinytable_css_orzo55y4waukjqyyi6oc, .table th.tinytable_css_orzo55y4waukjqyyi6oc { border-top: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.05em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_cw9wrdh0kduq3z5q00nc, .table th.tinytable_css_cw9wrdh0kduq3z5q00nc { background-color: #ededed; }
.table td.tinytable_css_9aic5pm6cj612hpwz8h8, .table th.tinytable_css_9aic5pm6cj612hpwz8h8 { border-bottom: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_zv39lxzrd682v0v72jmm, .table th.tinytable_css_zv39lxzrd682v0v72jmm { border-top: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.05em; border-bottom: solid #d3d8dc 0.1em; }
.table td.tinytable_css_byapduawfvx23xzyr978, .table th.tinytable_css_byapduawfvx23xzyr978 { background-color: #ededed; }
.table td.tinytable_css_7qwqvfjgm9utozwzp158, .table th.tinytable_css_7qwqvfjgm9utozwzp158 { border-bottom: solid #d3d8dc 0.1em; border-bottom: solid #d3d8dc 0.1em; }
</style>
<div class="container">
<table class="table table-striped" id="tinytable_1jzxid1t2mk270mjkx8x" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_ffs928durvkwch4son4q" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

<tr>
Expand Down
Loading

0 comments on commit db82959

Please sign in to comment.