Skip to content

Commit

Permalink
Merge pull request #651 from voucherifyio/pz/fix-md-files
Browse files Browse the repository at this point in the history
Update schema-to-md-table.ts
  • Loading branch information
p-zielinski authored Jan 23, 2024
2 parents 66eaf31 + 862a319 commit 8dfa3fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/src/schema-to-md-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ export default class SchemaToMarkdownTable {
if (!skipTitle && title) {
respopnseStrArr.push(`${"#".repeat(level + 2)} ${title}`);
if (description) {
respopnseStrArr.push(`${"#".repeat(level + 4)} ${description}`);
respopnseStrArr.push(`${"#".repeat(level + 4)} ${description}\n`);
}
} else if (!skipTitle) {
if (typeof schemaNameOrSchemaObject === "string") {
Expand Down

0 comments on commit 8dfa3fe

Please sign in to comment.