Skip to content

feat(markdown-transform): add table transforms #507

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/markdown-common/lib/CommonMarkUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,15 @@ function mkATXHeading(level) {
return Array(level).fill('#').join('');
}

/**
* Create table heading
* @param {number} col - the number of columns
* @return {string} the markup for the table heading
*/
function mkTableHeading(col) {
return Array(col).fill('|---------').join('') + '|';
}

/**
* Adding escapes for text nodes
* @param {string} input - unescaped
Expand Down Expand Up @@ -334,6 +343,7 @@ module.exports.mkNewLine = mkNewLine;
module.exports.mkPrefix = mkPrefix;
module.exports.mkSetextHeading = mkSetextHeading;
module.exports.mkATXHeading = mkATXHeading;
module.exports.mkTableHeading = mkTableHeading;

module.exports.escapeText = escapeText;
module.exports.escapeCodeBlock = escapeCodeBlock;
Expand Down
Loading