generated from skills/copilot-codespaces-vscode
-
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.
Showing
1 changed file
with
39 additions
and
10 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 |
---|---|---|
@@ -1,12 +1,41 @@ | ||
## Markdown Example | ||
|
||
-headings | ||
-unordered list | ||
-ordered list | ||
-text formatting | ||
-code | ||
-tables | ||
-imges | ||
-links | ||
-autolists | ||
-lisits | ||
- headings | ||
- unordered list | ||
- ordered list | ||
- text formatting | ||
- code | ||
- tables | ||
- imges | ||
- links | ||
- autolists | ||
- lisits | ||
|
||
## Unordrede lists | ||
|
||
We can create unordered lists in markdown using hypens. | ||
|
||
## Ordered List | ||
1. Uni | ||
2. Dos | ||
3. Tres | ||
|
||
## Text Formatting | ||
|
||
1) *itaics* | ||
2) **bold** | ||
3) __bold__ | ||
|
||
|
||
## Code | ||
You can put this command in the terminal: print "Hello World" | ||
|
||
## Tables | ||
<table> | ||
<tr> | ||
<td>1</td> | ||
<td>2</td> | ||
<td>3</td> | ||
</tr> | ||
</table> | ||
|