Skip to content

Commit

Permalink
Update schema2Markdown.js
Browse files Browse the repository at this point in the history
Co-authored-by: Kris West <kris.west@interop.io>
  • Loading branch information
TheJuanAndOnly99 and kriswest authored Apr 11, 2024
1 parent 9cb323a commit 0b13c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema2Markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function generateObjectMD(schema, title, schemaFolderName, filePath, version) {
}

function escape(text) {
return text.replace(/>/g, '\\>');
return text.replace(/>/g, '\\>').replace(/@experimental/g, '[@experiemental](/docs/fdc3-compliance#experimental-features)';
}

function generateFrontMatter(title, description) {
Expand Down

0 comments on commit 0b13c7a

Please sign in to comment.