fix: remove end of line chars after code blocks (#41498)

This commit is contained in:
Randell Dawson
2021-03-16 08:49:43 -06:00
committed by GitHub
parent 843eb81632
commit d2f4b70ea6
4 changed files with 17 additions and 6 deletions

View File

@ -20,7 +20,10 @@ To import a Google Font, you can copy the font's URL from the Google Fonts libra
`<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">`
Now you can use the `Lobster` font in your CSS by using `Lobster` as the FAMILY_NAME as in the following example:
`font-family: FAMILY_NAME, GENERIC_NAME;`.
```css
font-family: FAMILY_NAME, GENERIC_NAME;
```
The GENERIC_NAME is optional, and is a fallback font in case the other specified font is not available. This is covered in the next challenge.

View File

@ -13,7 +13,9 @@ Placeholder text is what is displayed in your `input` element before your user h
You can create placeholder text like so:
`<input type="text" placeholder="this is placeholder text">`
```html
<input type="text" placeholder="this is placeholder text">
```
**Note:** Remember that `input` elements are self-closing.

View File

@ -20,7 +20,9 @@ Then use jQuery's `.addClass()` function to add the classes `animated` and `fade
Here's how you'd make the `button` element with the id `target6` fade out:
`$("#target6").addClass("animated fadeOut")`.
```js
$("#target6").addClass("animated fadeOut");
```
# --hints--

View File

@ -12,11 +12,15 @@ In this challenge you will be creating a Priority Queue. A Priority Queue is a s
For instance, lets imagine we have a priority queue with three items:
`[['kitten', 2], ['dog', 2], ['rabbit', 2]]`
```js
[['kitten', 2], ['dog', 2], ['rabbit', 2]]
```
Here the second value (an integer) represents item priority. If we enqueue `['human', 1]` with a priority of `1` (assuming lower priorities are given precedence) it would then be the first item to be dequeued. The collection would look like this:
`[['human', 1], ['kitten', 2], ['dog', 2], ['rabbit', 2]]`.
```js
[['human', 1], ['kitten', 2], ['dog', 2], ['rabbit', 2]]
```
Weve started writing a `PriorityQueue` in the code editor. You will need to add an `enqueue` method for adding items with a priority, a `dequeue` method for removing and returning items, a `size` method to return the number of items in the queue, a `front` method to return the element at the front of the queue, and finally an `isEmpty` method that will return `true` if the queue is empty or `false` if it is not.