diff --git a/fix.js b/fix.js new file mode 100644 index 0000000..b86e889 --- /dev/null +++ b/fix.js @@ -0,0 +1,73 @@ +const fs = require('fs'); +let c = fs.readFileSync('groups/LimaEm/index.html', 'utf8'); + +const oldHeroGrad = '
'; +const newHeroGrad = '
'; +c = c.replace(oldHeroGrad, newHeroGrad); + +const oldPhotoStr = \ +
+ + +
+ + +
+ Ruang Tumbuh HMIF Universitas Tanjungpura + +
+
+ + +
+ +

+ Inklusivitas &
Kolaborasi +

+
+
\; +const newPhotoStr = \ +
+ +
+ + +
+ Ruang Tumbuh HMIF Universitas Tanjungpura + +
+
+ + +
+ +

+ Inklusivitas &
Kolaborasi +

+
+
\; +c = c.replace(oldPhotoStr, newPhotoStr); +fs.writeFileSync('groups/LimaEm/index.html', c); +console.log('HTML layout fixed');