Skip to content

jumpfast-tech/markdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Comprehensive Markdown Example

Table of Contents

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

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

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}

Mathematical Formula (Paragraph)

$$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$

Mathematical Formula (In-line)

Einstein's formula: $E=mc^2$ 🎉

Images

Cat

Images in HTML

Cat

Links

Click here to visit JumpFast Technologies

Tables

Here's a table.

Header 1 Header 2 Header 3
Row 1, Column 1 Row 1, Column 2 Row 1, Column 3
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

  • Finish my changes
  • Push my commits to GitHub
  • Open a pull request
  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • 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.

Quote break.

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.

Blockquotes can also be nested...

...by using additional greater-than signs right next to each other...

...or with spaces between arrows.

Inline HTML

Definition list
Is something people use sometimes.
Markdown in HTML
Does *not* work **very** well. Use HTML tags.

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Footnotes

  1. Footnote can have markup

    and multiple paragraphs.

  2. Footnote text. 2

About

Testing out different markdown operations

Resources

Stars

Watchers

Forks