()
| 385 | // Check for corresponding localized json file in i18n. |
| 386 | // Generate new version of the HTML file in: dist/html/<language_id>/<path> |
| 387 | const generateHtmlLoc = () => { |
| 388 | return gulp.src(htmlFilesPatterns) |
| 389 | .pipe(generateLocalizedHtmlFiles()) |
| 390 | .pipe(gulp.dest('dist')); |
| 391 | }; |
| 392 | |
| 393 | // Generate localized versions of walkthrough HTML (.md) files. |
| 394 | // Check for corresponding localized json file in i18n. |
nothing calls this directly
no test coverage detected