Skip to content

Latest commit

 

History

History
241 lines (169 loc) · 2.84 KB

markdownSyntax.md

File metadata and controls

241 lines (169 loc) · 2.84 KB

Markdown Syntax


Headers

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Italic Text

*This text* is italic

_This text_ is also italic

This text is italic

This text is also italic


Strong Text

**This text** is strong

__This text__ is also strong

This text is strong

This text is also strong


Strikethrough Text

~~This text~~ is strikethrough

This text is strikethrough


Horizontal Rules

---
___



Blockquote

> This is a quote

This is a quote


Hyperlinks

[Google](http://www.google.com)

[Google](http://www.google.com "Google")

Google

Google


Unordered Lists

* Item 1
* Item 2
* Item 3
  * Nested Item 1
  * Nested Item 2
  • Item 1

  • Item 2

  • Item 3

    • Nested Item 1
    • Nested Item 2

Ordered Lists

1. Item 1
1. Item 2
1. Item 3
  1. Item 1
  2. Item 2
  3. Item 3

Inline Code Block

`<p>This is a paragraph</p>`

<p>This is a paragraph</p>


Images

![Markdown Logo](https://raw.githubusercontent.com/SStranks/MyFirstRepository/master/HeartandBrain.jpg)

Markdown Logo


Code Blocks

Note: To codeblock the 'codeblock triple backtick'; parent nesting object uses higher integer of ticks (four).

Bash

```bash
  npm install

  npm start
```
  npm install

  npm start

Javascript

```javascript
  function add(num1, num2) {
    return num1 + num2;
  }
```
  function add(num1, num2) {
    return num1 + num2;
  }

Python

```python
  def add(num1, num2):
    return num1 + num2
```
  def add(num1, num2):
    return num1 + num2

Tables

| Default Header | Left Align    | Center Align | Right Align |
| -------------- | :------------ | :----------: | ----------: | 
| John Doe | [email protected] | 0207 1111 9999 | Westminster SW1A 0AA
| Jagger | [email protected] | 0207 2222 8888 | The Eye SE1 7PB
Default Header Left Align Center Align Right Align
John Doe [email protected] 0207 1111 9999 Westminster SW1A 0AA
Jagger [email protected] 0207 2222 8888 The Eye SE1 7PB

Task Lists

* [x] Task 1
* [x] Task 2
* [ ] Task 3
  • Task 1
  • Task 2
  • Task 3