Skip to content

Commit

Permalink
Deploying to gh-pages from @ d845ead 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jun 23, 2024
1 parent 82eb005 commit b22dfa2
Show file tree
Hide file tree
Showing 44 changed files with 1,382 additions and 1,381 deletions.
4 changes: 2 additions & 2 deletions CITATION.html
Original file line number Diff line number Diff line change
Expand Up @@ -348,15 +348,15 @@ <h1>Citation</h1>

Arel-Bundock V (????). _tinytable: Simple and Configurable Tables in
'HTML', 'LaTeX', 'Markdown', 'Word', 'PNG', 'PDF', and 'Typst'
Formats_. R package version 0.3.0.11,
Formats_. R package version 0.3.0.12,
&lt;https://vincentarelbundock.github.io/tinytable/&gt;.

A BibTeX entry for LaTeX users is

@Manual{,
title = {tinytable: Simple and Configurable Tables in 'HTML', 'LaTeX', 'Markdown', 'Word', 'PNG', 'PDF', and 'Typst' Formats},
author = {Vincent Arel-Bundock},
note = {R package version 0.3.0.11},
note = {R package version 0.3.0.12},
url = {https://vincentarelbundock.github.io/tinytable/},
}</code></pre>

Expand Down
1 change: 1 addition & 0 deletions NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ <h1>News</h1>
<section id="development" class="level2">
<h2 class="anchored" data-anchor-id="development">Development</h2>
<ul>
<li><code>plot_tt()</code>: The <code>height</code> argument is now respected in Markdown and Word documents.</li>
<li><code>group_tt()</code> allows 0 and duplicates in <code>i</code> argument for labels in the first row and consecutive labels.</li>
<li>Headers are now styled and formatted when <code>i=NULL</code>.</li>
<li><code>colnames(x)&lt;-NULL</code> works on a <code>tinytable</code> object.</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.11 tutorial will take you much further. It is available in two formats:</p>
<p>The <code>tinytable</code> 0.3.0.12 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
134 changes: 67 additions & 67 deletions man/format_tt.html

Large diffs are not rendered by default.

158 changes: 79 additions & 79 deletions man/group_tt.html

Large diffs are not rendered by default.

72 changes: 36 additions & 36 deletions man/rbind2-tinytable-tinytable-method.html
Original file line number Diff line number Diff line change
Expand Up @@ -494,24 +494,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_rrxax3uj24y1332o3rl2(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_vulh7k1s3ofejoqksdq0");
function styleCell_tinytable_6eh2uqzsnwjjzqv5k5xr(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_zdvbu7dr9n0rfiodriyi");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_vulh7k1s3ofejoqksdq0');
var table = document.getElementById('tinytable_zdvbu7dr9n0rfiodriyi');
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_tinytable_rrxax3uj24y1332o3rl2(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_vulh7k1s3ofejoqksdq0");
function spanCell_tinytable_6eh2uqzsnwjjzqv5k5xr(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_zdvbu7dr9n0rfiodriyi");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -540,19 +540,19 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

window.addEventListener('load', function () {
const cellStyles = [
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_cw5xjfje9zjhxfh37gv8'},
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_q9vpao7az1njunaddhkq'},
];
cellStyles.forEach(({coords, class: cssClass}) => {
styleCell_tinytable_rrxax3uj24y1332o3rl2('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
styleCell_tinytable_6eh2uqzsnwjjzqv5k5xr('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
});
});
</script>

<style>
.table td.tinytable_css_cw5xjfje9zjhxfh37gv8, .table th.tinytable_css_cw5xjfje9zjhxfh37gv8 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_q9vpao7az1njunaddhkq, .table th.tinytable_css_q9vpao7az1njunaddhkq { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_vulh7k1s3ofejoqksdq0" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_zdvbu7dr9n0rfiodriyi" 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 @@ -628,24 +628,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_7fsni9sit7nrz9ak4fhr(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_8njre7c9sqtfn0986mw5");
function styleCell_tinytable_ks2owlnejpu2036lbqni(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_68lmy7pwbiwdz8ilmj41");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_8njre7c9sqtfn0986mw5');
var table = document.getElementById('tinytable_68lmy7pwbiwdz8ilmj41');
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_tinytable_7fsni9sit7nrz9ak4fhr(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_8njre7c9sqtfn0986mw5");
function spanCell_tinytable_ks2owlnejpu2036lbqni(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_68lmy7pwbiwdz8ilmj41");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -674,19 +674,19 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

window.addEventListener('load', function () {
const cellStyles = [
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_nrxoxfruvh2ece7e1q9z'},
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_7dsgx03syvpm5umo4lwv'},
];
cellStyles.forEach(({coords, class: cssClass}) => {
styleCell_tinytable_7fsni9sit7nrz9ak4fhr('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
styleCell_tinytable_ks2owlnejpu2036lbqni('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
});
});
</script>

<style>
.table td.tinytable_css_nrxoxfruvh2ece7e1q9z, .table th.tinytable_css_nrxoxfruvh2ece7e1q9z { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_7dsgx03syvpm5umo4lwv, .table th.tinytable_css_7dsgx03syvpm5umo4lwv { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_8njre7c9sqtfn0986mw5" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_68lmy7pwbiwdz8ilmj41" 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 @@ -763,24 +763,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_2fh980vf7u9lftrwlm72(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_h89s3y81za6h4ww33xiz");
function styleCell_tinytable_ersdlqe8abgy71h0ub46(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_njubyvqn5vldgd0gjdvw");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_h89s3y81za6h4ww33xiz');
var table = document.getElementById('tinytable_njubyvqn5vldgd0gjdvw');
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_tinytable_2fh980vf7u9lftrwlm72(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_h89s3y81za6h4ww33xiz");
function spanCell_tinytable_ersdlqe8abgy71h0ub46(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_njubyvqn5vldgd0gjdvw");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -809,19 +809,19 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

window.addEventListener('load', function () {
const cellStyles = [
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_ukpqptapf3vmjw7mn1si'},
{coords: [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4]], class: 'tinytable_css_3amv65qlo6qdmyhuit40'},
];
cellStyles.forEach(({coords, class: cssClass}) => {
styleCell_tinytable_2fh980vf7u9lftrwlm72('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
styleCell_tinytable_ersdlqe8abgy71h0ub46('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
});
});
</script>

<style>
.table td.tinytable_css_ukpqptapf3vmjw7mn1si, .table th.tinytable_css_ukpqptapf3vmjw7mn1si { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_3amv65qlo6qdmyhuit40, .table th.tinytable_css_3amv65qlo6qdmyhuit40 { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_h89s3y81za6h4ww33xiz" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_njubyvqn5vldgd0gjdvw" 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 @@ -891,24 +891,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_eb7ns0rjty1bladu3jog(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_j92120hnr5imdw2kwlm6");
function styleCell_tinytable_dxya991ahf8xd6jl5pak(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_j5r3650jyvkxzfimha94");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_j92120hnr5imdw2kwlm6');
var table = document.getElementById('tinytable_j5r3650jyvkxzfimha94');
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_tinytable_eb7ns0rjty1bladu3jog(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_j92120hnr5imdw2kwlm6");
function spanCell_tinytable_dxya991ahf8xd6jl5pak(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_j5r3650jyvkxzfimha94");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -937,19 +937,19 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

window.addEventListener('load', function () {
const cellStyles = [
{coords: [[0, 0], [0, 1], [0, 2]], class: 'tinytable_css_oqqsasermpczufyi61x1'},
{coords: [[0, 0], [0, 1], [0, 2]], class: 'tinytable_css_kcy2t0qsk84l2qx6layz'},
];
cellStyles.forEach(({coords, class: cssClass}) => {
styleCell_tinytable_eb7ns0rjty1bladu3jog('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
styleCell_tinytable_dxya991ahf8xd6jl5pak('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
});
});
</script>

<style>
.table td.tinytable_css_oqqsasermpczufyi61x1, .table th.tinytable_css_oqqsasermpczufyi61x1 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_kcy2t0qsk84l2qx6layz, .table th.tinytable_css_kcy2t0qsk84l2qx6layz { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-borderless" id="tinytable_j92120hnr5imdw2kwlm6" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-borderless" id="tinytable_j5r3650jyvkxzfimha94" 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
30 changes: 15 additions & 15 deletions man/theme_tt.html
Original file line number Diff line number Diff line change
Expand Up @@ -514,24 +514,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_9xea82y5916o61111u7z(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_qkr1201pje3dtvdmqcd3");
function styleCell_tinytable_490u598yk1o5955e5e2x(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_f5u90zt9fy2sfj652z81");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_qkr1201pje3dtvdmqcd3');
var table = document.getElementById('tinytable_f5u90zt9fy2sfj652z81');
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_tinytable_9xea82y5916o61111u7z(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_qkr1201pje3dtvdmqcd3");
function spanCell_tinytable_490u598yk1o5955e5e2x(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_f5u90zt9fy2sfj652z81");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -562,7 +562,7 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
<style>
</style>
<div class="container">
<table class="table table-striped" id="tinytable_qkr1201pje3dtvdmqcd3" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_f5u90zt9fy2sfj652z81" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

<tr>
Expand Down Expand Up @@ -619,24 +619,24 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>
};
</script>
<script>
function styleCell_tinytable_sj069ow1p1gv2nobwohe(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_ys0hgbft6v746c9yxpim");
function styleCell_tinytable_3x59b4hmy4va5ctazgim(tableId, cellCoordinates, cssClass) {
var table = document.getElementById("tinytable_7qypa3qsttwaf3ecc8jo");
cellCoordinates.forEach(([i, j]) => {
table.rows[i].cells[j].classList.add(cssClass);
});
}

function insertSpanRow(i, colspan, content) {
var table = document.getElementById('tinytable_ys0hgbft6v746c9yxpim');
var table = document.getElementById('tinytable_7qypa3qsttwaf3ecc8jo');
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_tinytable_sj069ow1p1gv2nobwohe(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_ys0hgbft6v746c9yxpim");
function spanCell_tinytable_3x59b4hmy4va5ctazgim(i, j, rowspan, colspan) {
var table = document.getElementById("tinytable_7qypa3qsttwaf3ecc8jo");
const targetRow = table.rows[i];
const targetCell = targetRow.cells[j];
for (let r = 0; r < rowspan; r++) {
Expand Down Expand Up @@ -665,19 +665,19 @@ <h3 class="anchored" data-anchor-id="examples">Examples</h3>

window.addEventListener('load', function () {
const cellStyles = [
{coords: [[0, 0], [0, 1], [0, 2], [0, 3]], class: 'tinytable_css_5pah199dnx7q93n6a884'},
{coords: [[0, 0], [0, 1], [0, 2], [0, 3]], class: 'tinytable_css_rhud7iijgp0zik053a7i'},
];
cellStyles.forEach(({coords, class: cssClass}) => {
styleCell_tinytable_sj069ow1p1gv2nobwohe('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
styleCell_tinytable_3x59b4hmy4va5ctazgim('tinytable_szxl8eb7ubljmabuxmyx', coords, cssClass);
});
});
</script>

<style>
.table td.tinytable_css_5pah199dnx7q93n6a884, .table th.tinytable_css_5pah199dnx7q93n6a884 { border-bottom: solid 0.1em #d3d8dc; }
.table td.tinytable_css_rhud7iijgp0zik053a7i, .table th.tinytable_css_rhud7iijgp0zik053a7i { border-bottom: solid 0.1em #d3d8dc; }
</style>
<div class="container">
<table class="table table-striped" id="tinytable_ys0hgbft6v746c9yxpim" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<table class="table table-striped" id="tinytable_7qypa3qsttwaf3ecc8jo" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing="true">
<thead>

<tr>
Expand Down
Loading

0 comments on commit b22dfa2

Please sign in to comment.