From b60e17432c71c88e078afde9dec908cae14b8a89 Mon Sep 17 00:00:00 2001 From: Maddison Hellstrom Date: Fri, 1 Dec 2017 19:10:34 -0800 Subject: [PATCH] Use for placeholders in README --- README.tmpl.md | 8 ++++---- gulpfile.js | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.tmpl.md b/README.tmpl.md index 2a8d7f8..989e1cf 100644 --- a/README.tmpl.md +++ b/README.tmpl.md @@ -1,4 +1,4 @@ - + ### Maddy's SurfingKeys Configuration This is my personal configuration for the wonderful [SurfingKeys](https://github.com/brookhong/Surfingkeys) Chrome Extension. @@ -12,7 +12,7 @@ This is my personal configuration for the wonderful [SurfingKeys](https://github #### Bundled Search Engine Completions -There are currently Search Engine auto-completions. +There are currently Search Engine auto-completions. You can access a Search Engine auto-completion by pressing the search leader key, which is `a` by default, followed by the search engine alias. @@ -20,7 +20,7 @@ For example, to open the Wikipedia completion, you would type `awp` while in nor | Alias | Name | Domain | Screenshots | | ---- | ------ | ----- | ----- | - + #### Installation @@ -83,7 +83,7 @@ The final step is to tell SurfingKeys where to find your configuration file: If you ever make a change to any of your configuration files in the future, simply run `gulp install` again and your settings will be immediately updated. #### Screenshots - + #### Todo diff --git a/gulpfile.js b/gulpfile.js index 9bb7ae6..52b445b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -100,10 +100,10 @@ gulp.task("readme", () => { return `${a}| \`${c.alias}\` | \`${c.name}\` | \`${domain}\` | ${s} |\n` }, "") return gulp.src(["./README.tmpl.md"]) - .pipe(replace("", disclaimer)) - .pipe(replace("", Object.keys(compl).length)) - .pipe(replace("", table)) - .pipe(replace("", screenshotList)) + .pipe(replace("", disclaimer)) + .pipe(replace("", Object.keys(compl).length)) + .pipe(replace("", table)) + .pipe(replace("", screenshotList)) .pipe(rename("README.md")) .pipe(gulp.dest(".")) })