Skip to content

Commit

Permalink
Merge branch 'issue-1068' of github.com:TheJuanAndOnly99/FDC3 into is…
Browse files Browse the repository at this point in the history
…sue-1068
  • Loading branch information
TheJuanAndOnly99 committed Mar 7, 2024
2 parents 44e0c66 + 901d72a commit 5423041
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions schema2Markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,7 @@ function generateObjectMD(schema, title, schemaFolderName, filePath, version) {
}

function escape(text) {
let output = text;
output = output.replace(/>/g, '\\>');

return output;
return text.replace(/>/g, '\\>');
}

function generateFrontMatter(title, description) {
Expand Down

0 comments on commit 5423041

Please sign in to comment.