From c66479747c2e8a317710d9b2d010098721d258d9 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Dec 2016 15:39:24 +0900 Subject: [PATCH] Fix bug --- gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.ts b/gulpfile.ts index d05864a2e..4ac2f5a82 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -66,7 +66,7 @@ gulp.task('build:ts', () => gulp.task('build:about:docs', () => { const licenseHtml = fs.readFileSync('./LICENSE', 'utf-8') .replace(/\r\n/g, '\n') - .replace(/.\n./g, '') + .replace(/(.)\n(.)/g, '$1 $2') .replace(/(^|\n)(.*?)($|\n)/g, '

$2

'); const pugs = glob.sync('./src/web/about/pages/**/*.pug'); const streams = pugs.map(file => {