Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Fix Usage Block Wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuyk committed Mar 26, 2023
1 parent 713cc3a commit 217ba5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/documentation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ for (let file of files) {

const rowWithPathway = rows[i].replace('▸ ', apiPath + '.');
rows[i] = rowWithPathway;
rows.splice(i, 0, '::: Tip \r\n');
rows.splice(i + 2, 0, '::: \r\n');
rows.splice(i, 0, '::: tip Usage');
rows.splice(i + 2, 0, ':::');
i += 1; // Increment by 1 to prevent endless loop
}

Expand Down

0 comments on commit 217ba5f

Please sign in to comment.