Skip to content

Commit

Permalink
remove extra back-tick
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJuanAndOnly99 committed Apr 11, 2024
1 parent 4c49bb5 commit b27c3f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema2Markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ function generateObjectMD(schema, title, schemaFolderName, filePath, version) {
}

const url = filePath.replace("schemas/", `https://github.com/finos/FDC3/tree/main/schemas/`);
markdownContent += ``## Schema\n\n<${url}>\n\n`;
markdownContent += `## Schema\n\n<${url}>\n\n`;

if (hasAllOf(schema.allOf) || hasProperties(schema)) {
if (hasAllOf(schema.allOf) || hasProperties(schema)) {
// Extract properties, required fields, and $ref from the first allOf object
let root = schema;
if (hasAllOf(schema.allOf)) {
Expand Down

0 comments on commit b27c3f2

Please sign in to comment.