Skip to content

Update README.md #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 27 additions & 50 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,15 @@
- [Images in HTML](#images-in-html)
- [Links](#links)
- [Tables](#tables)
- [Lists](#lists)
- [Task Lists](#task-lists)
- [Blockquotes](#blockquotes)
- [Inline HTML](#inline-html)
- [Footnotes](#footnotes)

## Introduction

This document serves as a comprehensive example of various markdown features including code snippets, mathematical formulas, images, links, and tables. Markdown is a lightweight markup language with plain-text formatting syntax that can be converted to HTML and many other formats.

## C Code Snippet

Inline `code` has `back-ticks around` it.

Below is an example of a simple C code snippet that prints "Hello, World!" to the console.

```c
Expand Down Expand Up @@ -54,6 +51,8 @@ Einstein's formula: $E=mc^2$ 🎉

Click here to visit [JumpFast Technologies](https://www.jumpfast.tech "JumpFast")

<a href="www.superlinked.com">This is an HTML anchor link</a>

## Tables
Here's a table.
| Header 1 | Header 2 | Header 3 |
Expand All @@ -62,71 +61,49 @@ Here's a table.
| Row 2, Column 1 | Row 2, Column 2 | Row 2, Column 3 |
| Row 3, Column 1 | Row 3, Column 2 | Row 3, Column 3 |

## Lists

1. Make my changes
1. Fix bug
2. Improve formatting
- Make the headings bigger
2. Push my commits to GitHub
3. Open a pull request
+ Describe my changes
+ Mention all the members of my team
* Ask for feedback

+ Create a list by starting a line with `+`, `-`, or `*`
+ Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
* Ac tristique libero volutpat at
* Facilisis in pretium nisl aliquet
* Nulla volutpat aliquam velit
+ Very easy!

## Task Lists

## Task List
- [x] Finish my changes
- [ ] Push my commits to GitHub
- [ ] Open a pull request
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
- [ ] this is a complete item
- [x] this is a complete item
- [ ] this is an incomplete item

## Blockquotes

> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
## Footnote
Footnote 1 link[^first].

Quote break.
Footnote 2 link[^second].

> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
Inline footnote^[Text of inline footnote] definition.

> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
> > > ...or with spaces between arrows.
Duplicated footnote reference[^second].

[^first]: Footnote **can have markup**

## Inline HTML
and multiple paragraphs.

<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
[^second]: Footnote text.

<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>

## Footnotes
## Blockquotes

Footnote 1 link[^first].
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.

Footnote 2 link[^second].
Quote break.

Inline footnote^[Text of inline footnote] definition.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.

Duplicated footnote reference[^second].
> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
> > > ...or with spaces between arrows.

[^first]: Footnote **can have markup**

and multiple paragraphs.
## YouTube Videos

[^second]: Footnote text.
<a href="http://www.youtube.com/watch?feature=player_embedded&v=YOUTUBE_VIDEO_ID_HERE" target="_blank">
<img src="http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg" alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10">
</a>