forked from 10-4-pursuit/lab-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4a639ea
Showing
3 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!-- Change to an H1 --> | ||
|
||
All about Raccoons | ||
|
||
<!-- The text below is ASCII art of a raccoon. Wrap it in a code block. --> | ||
|
||
,,, | ||
.' `/\_/\ | ||
.' <@I@> | ||
<(((((((((( )____( \./ | ||
\( \( \(\( | ||
`-"`-" " " | ||
|
||
<!-- Change to a bullet point and link. --> | ||
|
||
Source https://en.wikipedia.org/wiki/Raccoon | ||
|
||
<!-- Bold only the first sentence of the following paragraph --> | ||
|
||
The raccoon, sometimes called the common raccoon to distinguish it from other species, is a medium-sized mammal native to North America. It is the largest of the procyonid family, having a body length of 40 to 70 cm (16 to 28 in), and a body weight of 5 to 26 kg (11 to 57 lb). Its grayish coat mostly consists of dense underfur, which insulates it against cold weather. Three of the raccoon's most distinctive features are its extremely dexterous front paws, its facial mask, and its ringed tail, which are themes in the mythologies of the indigenous peoples of the Americas relating to the animal. The raccoon is noted for its intelligence, as studies show that it is able to remember the solution to tasks for at least three years. It is usually nocturnal and omnivorous, eating about 40% invertebrates, 33% plants, and 27% vertebrates. | ||
|
||
<!-- Change to an H2 --> | ||
|
||
Taxonomy | ||
|
||
<!-- Italicize all of the latin words (e.g. Ursus) --> | ||
|
||
In the first decades after its discovery by the members of the expedition of Christopher Columbus, who were the first Europeans to leave a written record about the species, taxonomists thought the raccoon was related to many different species, including dogs, cats, badgers and particularly bears. Carl Linnaeus, the father of modern taxonomy, placed the raccoon in the genus Ursus, first as Ursus cauda elongata ("long-tailed bear") in the second edition of his Systema Naturae (1740), then as Ursus Lotor ("washer bear") in the tenth edition (1758–59). In 1780, Gottlieb Conrad Christian Storr placed the raccoon in its own genus Procyon, which can be translated as either "before the dog" or "doglike". It is also possible that Storr had its nocturnal lifestyle in mind and chose the star Procyon as eponym for the species. | ||
|
||
<!-- Change to an H3 --> | ||
|
||
Evolution | ||
|
||
<!-- Create three paragraphs from the following paragraph. You may start the paragraphs wherever you like. --> | ||
|
||
Based on fossil evidence from Russia and Bulgaria, the first known members of the family Procyonidae lived in Europe in the late Oligocene about 25 million years ago. Similar tooth and skull structures suggest procyonids and weasels share a common ancestor, but molecular analysis indicates a closer relationship between raccoons and bears. After the then-existing species crossed the Bering Strait at least six million years later in the early Miocene, the center of its distribution was probably in Central America. Coatis (Nasua and Nasuella) and raccoons (Procyon) have been considered to share common descent from a species in the genus Paranasua present between 5.2 and 6.0 million years ago. This assumption, based on morphological comparisons of fossils, conflicts with a 2006 genetic analysis which indicates raccoons are more closely related to ringtails. Unlike other procyonids, such as the crab-eating raccoon (Procyon cancrivorus), the ancestors of the common raccoon left tropical and subtropical areas and migrated farther north about 2.5 million years ago, in a migration that has been confirmed by the discovery of fossils in the Great Plains dating back to the middle of the Pliocene. Its most recent ancestor was likely Procyon rexroadensis, a large Blancan raccoon from the Rexroad Formation characterized by its narrow back teeth and large lower jaw. | ||
|
||
<!-- Change the link below to be an image. Include descriptive alternate text. --> | ||
|
||
https://curiodyssey.org/wp-content/uploads/bb-plugin/cache/Mammals-Raccoon-square.jpg | ||
|
||
|
||
<!-- Use one set of backticks to highlight the word raccoon as a keyword --> | ||
|
||
The raccoon is a worthwhile animal to study and write about. | ||
|
||
<!-- Use three sets of backticks and set the type of codeblock to js so that you can highlight a codeblock that shows a console.log() with a string about raccoons. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Markdown Lab | ||
|
||
In this Lab, you will be formatting a Markdown file that desperately needs it. | ||
|
||
## Instructions | ||
|
||
### Downloading this Lab | ||
|
||
1. From the repository homepage on GitHub, click the green "Code" button. Then, click "Download ZIP". | ||
|
||
1. Unzip the downloaded file. It will create a folder of the same name in your Downloads folder. | ||
|
||
1. Navigate to the folder and open it with VSCode. Then, follow the instructions below. | ||
|
||
### Completing this Lab | ||
|
||
The [needs-formatting.md](./needs-formatting.md) file in this repository needs just that: formatting! Using what you know of markdown, update the text so that it is well formatting. | ||
|
||
In front or above each block of text will be a Markdown comment that describes how it should be formatted. | ||
|
||
For example, the following code: | ||
|
||
```md | ||
<!-- Change to an H3 --> | ||
|
||
All about Dogs | ||
``` | ||
|
||
Should be updated to look like this: | ||
|
||
```md | ||
<!-- Change to an H3 --> | ||
|
||
### All about Dogs | ||
``` |