fix: Markdown formatting

This commit is contained in:
Stuart Taylor
2018-10-12 07:17:55 +01:00
parent 116e725cbd
commit d2c069b4f7

View File

@ -5,15 +5,20 @@ title: Blockquote Tag
### Purpose
The HTML <blockquote> element shows that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation.
### Usage
Just like the "H" tags send signals to a reader that the informaiton is important, the blockquote alerts a reader that the information they're reading is from another source. The <blockquote> tag can include A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.
### Usage
Just like the "H" tags send signals to a reader that the informaiton is important, the blockquote alerts a reader that the information they're reading is from another source. The `<blockquote>` tag can include A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the `<cite>` element.
### Example
```
<blockquote cite="https://www.cnet.com/news/tim-cook-maintains-steve-jobs-beatles-business-model/"> “My model for business is The Beatles. They were four guys who kept each others kind of negative tendencies in check. They balanced each other and the total was greater than the sum of the parts. Thats how I see business: great things in business are never done by one person, theyre done by a team of people.”</blockquote>
```html
<blockquote cite="https://www.cnet.com/news/tim-cook-maintains-steve-jobs-beatles-business-model/">
“My model for business is The Beatles. They were four guys who kept each others kind of negative tendencies in check.
They balanced each other and the total was greater than the sum of the parts.
Thats how I see business: great things in business are never done by one person, theyre done by a team of people.”
</blockquote>
<cite>Steve Jobs</cite>
```
#### More Information:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
[blockquote MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote)