Skip to content

Commit

Permalink
fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Sep 27, 2023
1 parent 2a13e08 commit 87e359d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modelina-website/scripts/build-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function prepareContent(content) {
content = content.replace('<!-- toc is generated with GitHub Actions do not remove toc markers -->', '');
content = content.replace('<!-- toc -->', '');
content = content.replace('<!-- tocstop -->', '');
content = content.replaceAll('.md', '');
content = content.replace(/\.md/g, '');

// Use correct example links
content = content.replace(/\]\((.*?)examples\/(.*?)\/?\)/g, '](/examples?selectedExample=$2)');
Expand Down

0 comments on commit 87e359d

Please sign in to comment.