https://github.com/codeadamca/markdown-demo
A basic example of most Markdown syntax.
https://github.com/codeadamca/markdown-demo
learning-code markdown
Last synced: 3 months ago
JSON representation
A basic example of most Markdown syntax.
- Host: GitHub
- URL: https://github.com/codeadamca/markdown-demo
- Owner: codeadamca
- Created: 2022-04-14T13:55:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T21:28:22.000Z (5 months ago)
- Last Synced: 2025-01-26T22:25:05.117Z (5 months ago)
- Topics: learning-code, markdown
- Homepage:
- Size: 1.54 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Markdown Demo
A basic example of most available Markdown syntax.
## Headings
Headings are added using a `#` for heading level one, `##` for heading level two, etc...
## Heading Level Two
```markdown
## Heading Level Two
```## Paragraphs
Paragraphs are added by simply adding text on their own line.
```markdown
This is a a paragraph.And this is another paragraph.
```## Links
Links are added using square brackets for the clickable part and round brackets for the URL.
```markdown
[codeadam.ca](https://codeadam.ca)
```## Images
Images are added imilarly to links. The image description is placed in square brackets, and a URL to the image is placed in the round brackets. The different between an image and a link, is that an image stats with an exclamation mark `!`.
This image:

Was added using this code:
```markdown

```## Adding Code to Markdown
You can add inline `code` using a single backtick. Or a block of code using thee backticks:
```
# This is a Level One Header
## This is a Level Two Header
```You can specify the language in a block of code after the three ticks:
```markdown
# This is a Level One Header
## This is a Level Two Header
```Here is some sample JavaScript:
```javascript
document.write("Hello World!");
```## Tables
To add tables to a Markdown documnet you use a series of dashes and bars:
| Heading 1 | Heading 2 | Heading 3 |
| -------------- | ------------- | ------------- |
| Value 1 | Value 2 | Value 3 |Tables in your Markdown file don't need to line up:
Heading 1 | Heading 2 | Heading 3
--- | --- | ---
Value 1 | Value 2 | Value 3## Lists
You can add lists using number `
` or dashes `
`:
1. This is the first list item.
2. This is the second list item.This is the second paragraph in the second list item.
3. This is the third list item.
***
## Repo References
* [Visual Studio Code](https://code.visualstudio.com/)
* [Markdown Guide](https://www.markdownguide.org/)
* [Markdown](https://daringfireball.net/projects/markdown/)