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

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vivaxy committed Oct 22, 2016
1 parent e7d6c66 commit de1fa1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const createREADME = async() => {
];
let data_removed = data;
partsToRemove.forEach((part) => {
data_removed = data_removed.replace(new RegExp(`## ${part}.+?##`), `\n##`);
data_removed = data_removed.replace(new RegExp(`## ${part}[\\s\\S]+?##`), `##`);
});
return await write(filename, data_removed);
};
Expand Down

0 comments on commit de1fa1f

Please sign in to comment.