diff --git a/snippets/and.md b/snippets/and.md index 4cacbde3e..1c7cc0d33 100644 --- a/snippets/and.md +++ b/snippets/and.md @@ -1,6 +1,7 @@ --- title: and tags: math,logic,beginner +unlisted: true --- Checks if both arguments are `true`. diff --git a/snippets/both.md b/snippets/both.md index c8f9c0bdc..3b05f9876 100644 --- a/snippets/both.md +++ b/snippets/both.md @@ -1,6 +1,7 @@ --- title: both tags: function,logic,beginner +unlisted: true --- Checks if both of the given functions return `true` for a given set of arguments. diff --git a/snippets/celsiusToFahrenheit.md b/snippets/celsiusToFahrenheit.md index 9ea34171e..0161ac958 100644 --- a/snippets/celsiusToFahrenheit.md +++ b/snippets/celsiusToFahrenheit.md @@ -1,6 +1,7 @@ --- title: celsiusToFahrenheit tags: math,beginner +unlisted: true --- Converts Celsius to Fahrenheit. diff --git a/snippets/fahrenheitToCelsius.md b/snippets/fahrenheitToCelsius.md index b17656336..745624b38 100644 --- a/snippets/fahrenheitToCelsius.md +++ b/snippets/fahrenheitToCelsius.md @@ -1,6 +1,7 @@ --- title: fahrenheitToCelsius tags: math,beginner +unlisted: true --- Converts Fahrenheit to Celsius. diff --git a/snippets/hz.md b/snippets/hz.md index 06528367a..21bc93104 100644 --- a/snippets/hz.md +++ b/snippets/hz.md @@ -1,6 +1,7 @@ --- title: hz tags: function,intermediate +unlisted: true --- Measures the number of times a function is executed per second (`hz`/`hertz`). diff --git a/snippets/kmToMiles.md b/snippets/kmToMiles.md index db4a5de48..a02f2953f 100644 --- a/snippets/kmToMiles.md +++ b/snippets/kmToMiles.md @@ -1,6 +1,7 @@ --- title: kmToMiles tags: math,beginner +unlisted: true --- Converts kilometers to miles. diff --git a/snippets/milesToKm.md b/snippets/milesToKm.md index ded878fc3..36e3977de 100644 --- a/snippets/milesToKm.md +++ b/snippets/milesToKm.md @@ -1,6 +1,7 @@ --- title: milesToKm tags: math,beginner +unlisted: true --- Converts miles to kilometers. diff --git a/snippets/not.md b/snippets/not.md index 199bdb1b9..8e3bdf420 100644 --- a/snippets/not.md +++ b/snippets/not.md @@ -1,6 +1,7 @@ --- title: not tags: math,logic,beginner +unlisted: true --- Returns the logical inverse of the given value. diff --git a/snippets/or.md b/snippets/or.md index c10f4e3ab..b401d9c2a 100644 --- a/snippets/or.md +++ b/snippets/or.md @@ -1,6 +1,7 @@ --- title: or tags: math,logic,beginner +unlisted: true --- Checks if at least one of the arguments is `true`. diff --git a/snippets/xor.md b/snippets/xor.md index 0aa5771d9..4e26925bb 100644 --- a/snippets/xor.md +++ b/snippets/xor.md @@ -1,6 +1,7 @@ --- title: xor tags: math,logic,beginner +unlisted: true --- Checks if only one of the arguments is `true`. diff --git a/snippets/yesNo.md b/snippets/yesNo.md index d88823d58..83b71ecb9 100644 --- a/snippets/yesNo.md +++ b/snippets/yesNo.md @@ -1,6 +1,7 @@ --- title: yesNo tags: string,regexp,intermediate +unlisted: true --- Returns `true` if the string is `y`/`yes` or `false` if the string is `n`/`no`.