Add warning about auto-generated README sections

This commit is contained in:
Belleve Invis 2020-04-16 20:39:54 -07:00
parent 24325f0188
commit 3adcf5f947

View file

@ -66,7 +66,8 @@ class MdCol {
apply(s) {
return s.replace(this.matchRegex, () => {
return (
`<!-- BEGIN ${this.sectionName} -->\n\n` +
`<!-- BEGIN ${this.sectionName} -->\n` +
`<!-- THIS SECTION IS AUTOMATICALLY GENERATED. DO NOT EDIT. -->\n\n` +
this.data +
`\n<!-- END ${this.sectionName} -->\n`
);