From 880fea4a39388ee4700e37f6ddb684b04b84d83e Mon Sep 17 00:00:00 2001 From: Maddison Hellstrom Date: Fri, 1 Dec 2017 19:02:57 -0800 Subject: [PATCH] Use emojis for screenshot links --- README.md | 24 ++++++++++++------------ gulpfile.js | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index aafcb70..9477568 100644 --- a/README.md +++ b/README.md @@ -33,39 +33,39 @@ For example, to open the Wikipedia completion, you would type `awp` while in nor | `az` | `amazon` | `smile.amazon.com` | | | `cl` | `craigslist` | `craigslist.org` | | | `co` | `crunchbase-orgs` | `www.crunchbase.com` | | -| `cp` | `crunchbase-people` | `www.crunchbase.com` | [\[1\]](#crunchbase-people) | +| `cp` | `crunchbase-people` | `www.crunchbase.com` | [:framed_picture:](#crunchbase-people) | | `cs` | `chromestore` | `chrome.google.com` | | -| `de` | `define` | `onelook.com` | [\[1\]](#define) | +| `de` | `define` | `onelook.com` | [:framed_picture:](#define) | | `dg` | `duckduckgo` | `duckduckgo.com` | | -| `dh` | `dockerhub` | `hub.docker.com` | [\[1\]](#dockerhub) | -| `do` | `domainr` | `domainr.com` | [\[1\]](#domainr) | +| `dh` | `dockerhub` | `hub.docker.com` | [:framed_picture:](#dockerhub) | +| `do` | `domainr` | `domainr.com` | [:framed_picture:](#domainr) | | `ex` | `exdocs` | `hex.pm` | | | `gd` | `godoc` | `godoc.org` | | -| `gh` | `github` | `github.com` | [\[1\]](#github) | +| `gh` | `github` | `github.com` | [:framed_picture:](#github) | | `gl` | `google-lucky` | `www.google.com` | | | `go` | `google` | `www.google.com` | | | `gs` | `go-search` | `go-search.org` | | | `gw` | `gowalker` | `gowalker.org` | | | `ha` | `hackage` | `hackage.haskell.org` | | | `hd` | `hexdocs` | `hex.pm` | | -| `hn` | `hackernews` | `hn.algolia.com` | [\[1\]](#hackernews) | -| `ho` | `hoogle` | `www.haskell.org` | [\[1\]](#hoogle) | +| `hn` | `hackernews` | `hn.algolia.com` | [:framed_picture:](#hackernews) | +| `ho` | `hoogle` | `www.haskell.org` | [:framed_picture:](#hoogle) | | `hw` | `haskellwiki` | `wiki.haskell.org` | | | `hx` | `hex` | `hex.pm` | | | `hy` | `hayoo` | `hayoo.fh-wedel.de` | | | `jq` | `jquery` | `Google Custom Search` | | -| `md` | `mdn` | `developer.mozilla.org` | [\[1\]](#mdn) | +| `md` | `mdn` | `developer.mozilla.org` | [:framed_picture:](#mdn) | | `no` | `node` | `Google Custom Search` | | -| `np` | `npm` | `www.npmjs.com` | [\[1\]](#npm) | +| `np` | `npm` | `www.npmjs.com` | [:framed_picture:](#npm) | | `ow` | `owasp` | `www.owasp.org` | | | `re` | `reddit` | `www.reddit.com` | | | `so` | `stackoverflow` | `stackoverflow.com` | | -| `th` | `thesaurus` | `www.onelook.com` | [\[1\]](#thesaurus) | +| `th` | `thesaurus` | `www.onelook.com` | [:framed_picture:](#thesaurus) | | `vw` | `vimwikia` | `vim.wikia.com` | | -| `wa` | `wolframalpha` | `www.wolframalpha.com` | [\[1\]](#wolframalpha) [\[2\]](#wolframalpha-2) | +| `wa` | `wolframalpha` | `www.wolframalpha.com` | [:framed_picture:](#wolframalpha) [:framed_picture:](#wolframalpha-2) | | `wp` | `wikipedia` | `en.wikipedia.org` | | | `yp` | `yelp` | `www.yelp.com` | | -| `yt` | `youtube` | `www.youtube.com` | [\[1\]](#youtube) | +| `yt` | `youtube` | `www.youtube.com` | [:framed_picture:](#youtube) | #### Installation diff --git a/gulpfile.js b/gulpfile.js index ec9b0c3..9bb7ae6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -92,7 +92,7 @@ gulp.task("readme", () => { if (screens[c.alias]) { screens[c.alias].forEach((url, i) => { const num = (i > 0) ? ` ${i + 1}` : "" - s += `[\\[${i + 1}\\]](#${c.name}${num.replace(" ", "-")}) ` + s += `[:framed_picture:](#${c.name}${num.replace(" ", "-")}) ` screenshotList += `##### ${c.name}${num}\n` screenshotList += `![${c.name} screenshot](./${url})\n\n` })