An open API service indexing awesome lists of open source software.

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...

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:

![Text Image](https://raw.githubusercontent.com/codeadamca/sandbox/main/_readme/test.png)

This URL can also be relative:

![Text Image](_readme/test.png)

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/)