mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 23:36:16 -04:00
Align Markdown table column separators
This commit is contained in:
parent
2efd075803
commit
dee2dc3777
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ class ToTable extends Operation {
|
|||
output += outputRow(row, longestCells);
|
||||
let rowOutput = verticalBorder;
|
||||
row.forEach(function(cell, index) {
|
||||
rowOutput += " " + headerDivider + " " + verticalBorder;
|
||||
rowOutput += " " + headerDivider.repeat(longestCells[index]) + " " + verticalBorder;
|
||||
});
|
||||
output += rowOutput += "\n";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue