From 821f442bec18eb061504b6a2d1f44d19ba0774cb Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Sun, 18 Oct 2020 14:19:29 +0300 Subject: [PATCH] Remove url tag --- snippets/currentURL.md | 2 +- snippets/getBaseURL.md | 2 +- snippets/getURLParameters.md | 2 +- snippets/httpDelete.md | 2 +- snippets/httpGet.md | 2 +- snippets/httpPost.md | 2 +- snippets/httpPut.md | 2 +- snippets/httpsRedirect.md | 2 +- snippets/isAbsoluteURL.md | 2 +- snippets/redirect.md | 2 +- snippets/runAsync.md | 2 +- snippets/stableSort.md | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/snippets/currentURL.md b/snippets/currentURL.md index b4d315487..723c010a0 100644 --- a/snippets/currentURL.md +++ b/snippets/currentURL.md @@ -1,6 +1,6 @@ --- title: currentURL -tags: browser,url,beginner +tags: browser,beginner --- Returns the current URL. diff --git a/snippets/getBaseURL.md b/snippets/getBaseURL.md index aad73966f..5bc4bc9be 100644 --- a/snippets/getBaseURL.md +++ b/snippets/getBaseURL.md @@ -1,6 +1,6 @@ --- title: getBaseURL -tags: browser,string,url,beginner +tags: browser,string,beginner --- Returns the current URL without any parameters. diff --git a/snippets/getURLParameters.md b/snippets/getURLParameters.md index 70ea87032..9abd2dcaa 100644 --- a/snippets/getURLParameters.md +++ b/snippets/getURLParameters.md @@ -1,6 +1,6 @@ --- title: getURLParameters -tags: browser,string,url,intermediate +tags: browser,string,intermediate --- Returns an object containing the parameters of the current URL. diff --git a/snippets/httpDelete.md b/snippets/httpDelete.md index 20ee6861c..5471bded2 100644 --- a/snippets/httpDelete.md +++ b/snippets/httpDelete.md @@ -1,6 +1,6 @@ --- title: httpDelete -tags: browser,url,intermediate +tags: browser,intermediate --- Makes a `DELETE` request to the passed URL. diff --git a/snippets/httpGet.md b/snippets/httpGet.md index 7198781a0..f246a2592 100644 --- a/snippets/httpGet.md +++ b/snippets/httpGet.md @@ -1,6 +1,6 @@ --- title: httpGet -tags: browser,url,intermediate +tags: browser,intermediate --- Makes a `GET` request to the passed URL. diff --git a/snippets/httpPost.md b/snippets/httpPost.md index eb44a6537..e44b49f3f 100644 --- a/snippets/httpPost.md +++ b/snippets/httpPost.md @@ -1,6 +1,6 @@ --- title: httpPost -tags: browser,url,intermediate +tags: browser,intermediate --- Makes a `POST` request to the passed URL. diff --git a/snippets/httpPut.md b/snippets/httpPut.md index 0cd320776..feecfdbea 100644 --- a/snippets/httpPut.md +++ b/snippets/httpPut.md @@ -1,6 +1,6 @@ --- title: httpPut -tags: browser,url,intermediate +tags: browser,intermediate --- Makes a `PUT` request to the passed URL. diff --git a/snippets/httpsRedirect.md b/snippets/httpsRedirect.md index 12597d237..a0a5b385e 100644 --- a/snippets/httpsRedirect.md +++ b/snippets/httpsRedirect.md @@ -1,6 +1,6 @@ --- title: httpsRedirect -tags: browser,url,intermediate +tags: browser,intermediate --- Redirects the page to HTTPS if its currently in HTTP. Also, pressing the back button doesn't take it back to the HTTP page as its replaced in the history. diff --git a/snippets/isAbsoluteURL.md b/snippets/isAbsoluteURL.md index f44087dc7..aa6ad0646 100644 --- a/snippets/isAbsoluteURL.md +++ b/snippets/isAbsoluteURL.md @@ -1,6 +1,6 @@ --- title: isAbsoluteURL -tags: string,browser,url,intermediate +tags: string,browser,intermediate --- Returns `true` if the given string is an absolute URL, `false` otherwise. diff --git a/snippets/redirect.md b/snippets/redirect.md index c665e1d3c..726d8176e 100644 --- a/snippets/redirect.md +++ b/snippets/redirect.md @@ -1,6 +1,6 @@ --- title: redirect -tags: browser,url,beginner +tags: browser,beginner --- Redirects to a specified URL. diff --git a/snippets/runAsync.md b/snippets/runAsync.md index dfc294b5b..05ee6ec05 100644 --- a/snippets/runAsync.md +++ b/snippets/runAsync.md @@ -1,6 +1,6 @@ --- title: runAsync -tags: browser,function,promise,url,advanced +tags: browser,function,promise,advanced --- Runs a function in a separate thread by using a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), allowing long running functions to not block the UI. diff --git a/snippets/stableSort.md b/snippets/stableSort.md index 261e2aa85..48179245f 100644 --- a/snippets/stableSort.md +++ b/snippets/stableSort.md @@ -1,6 +1,6 @@ --- title: stableSort -tags: array,sort,advanced,intermediate +tags: array,advanced --- Performs stable sorting of an array, preserving the initial indexes of items when their values are the same.