From 6324b8890f845235cf5638a6b3962451b532b565 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Fri, 9 Feb 2018 15:51:25 -0700 Subject: [PATCH] update sample page to align with source file --- preview-site-src/index.html | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/preview-site-src/index.html b/preview-site-src/index.html index d3a10cf..a08c964 100644 --- a/preview-site-src/index.html +++ b/preview-site-src/index.html @@ -28,6 +28,7 @@ Eu mea inani iriure.

"scripts": { "test": "mocha", "lint": "eslint" + } } @@ -36,7 +37,7 @@ Eu mea inani iriure.

.Optional title
 [example]
-This is an #example paragraph#.
+This is an example paragraph.
@@ -50,24 +51,26 @@ This is an example paragraph.
-
const gulp = require('gulp')
-const browserify = require('browserify')
-const buffer = require('vinyl-buffer')
-const uglify = require('gulp-uglify')
-const tap = require('gulp-tap') (1)
-
+
vfs
+  .src('js/vendor/*.js', { cwd: 'src', cwdbase: true, read: false })
+  .pipe(tap((file) => { (1)
+    file.contents = browserify(file.relative, { basedir: 'src', detectGlobals: false }).bundle()
+  }))
+  .pipe(buffer())
+  .pipe(uglify())
+  .pipe(gulp.dest('build'))
- +
1Used to wiretap the data in the pipe.The tap function is used to wiretap the data in the pipe.
-

Cum dicat putant ne. +

Cum dicat putant ne. Est in reque homero principes, meis deleniti mediocrem ad has. Altera atomorum his ex, has cu elitr melius propriae. Eos suscipit scaevola at.

@@ -87,13 +90,10 @@ src/

Select File  Open Project to open the project in your IDE. Per ea solet civibus inimicus. -Ferri tacimates constituam sed ex, eu mea munere vituperata constituam.

-
-
+Ferri F11 tacimates constituam sed ex, eu mea munere vituperata Ctrl+T constituam.

Liber recusabo

-

No sea, at invenire voluptaria mnesarchum has. Ex nam suas nemore dignissim, vel apeirian democritum et. @@ -197,9 +197,7 @@ Eos suscipit scaevola at.

-
-

This oughta do it!

-
+This oughta do it! @@ -283,9 +281,9 @@ Eos suscipit scaevola at.

If you installed the CLI and the default site generator globally, you can upgrade both of them with the same command.

-
+
-
$ npm i -g @antora/cli @antora/site-generator-default
+
$ npm i -g @antora/cli @antora/site-generator-default
@@ -296,7 +294,6 @@ Eos suscipit scaevola at.

Nominavi luptatum eos, an vim hinc philosophia intellegebat. Eu mea inani iriure.

-

Voluptua singulis

Cum dicat putant ne. @@ -306,3 +303,4 @@ Eos suscipit scaevola at.

+
\ No newline at end of file -- 2.11.0