https://github.com/codeadamca/sandbox
This is a useless repo for messing around with Git, GitHub, Markdown, etc...
https://github.com/codeadamca/sandbox
git github learning-code markdown
Last synced: 7 months ago
JSON representation
This is a useless repo for messing around with Git, GitHub, Markdown, etc...
- Host: GitHub
- URL: https://github.com/codeadamca/sandbox
- Owner: codeadamca
- Created: 2023-03-27T17:44:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:28:54.000Z (about 1 year ago)
- Last Synced: 2025-03-31T07:18:28.823Z (11 months ago)
- Topics: git, github, learning-code, markdown
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Markdown
## Paragraphs and Headers
This is a paragraph.
This is another paragraph.
This text is not a new paragraph.
This text is *italics* and this text is **bold** and this text is both ***bold and italics***.
> Tabbed in with a bar on the side!
## Lists
### Unordered lists
- Use a dash as a bullet
- No space before the dash
- One space after the dash
- If you have two lines in this list item
Use four spaces to indent the next line
### Ordered Lists
1. Use numbers
2. A dot and a space after the number
3. If ytou have twop lines in this list item
Use four spaces to indent the next line
## Links
Here is a link to [my website](https://codeadam.ca).
Properly formatted URLs will be linked:
https://codeadam.ca
## Images
Images can be added by using a full URL:

This URL can also be relative:

You can use plain HTML in a README.md file:

## Code
Use the `` tag to start an HTML document.
```javascript
console.log("Hello World!");
document.write("
Hello World!
");
```
## Tables
| First Heading | Second Heading | |
| --------------- | ------------------ | ---: |
| Value 1 | Value 2 | 1.0 |
| Value 3 | Value 4 | 1.0 |
First Heading | Second Heading | #
--- | --- | ---:
Value 1 | Value 2 | 1.0
Value 3 | Value 4 | 1.0
***
## Repo References
* [Visual Studio Code](https://code.visualstudio.com/)
* [Markdown Guide](https://www.markdownguide.org/)
* [Markdown](https://daringfireball.net/projects/markdown/)