Skip to content

Latest commit

 

History

History
375 lines (225 loc) · 5.67 KB

Bob-Northwind.md

File metadata and controls

375 lines (225 loc) · 5.67 KB
id qualifications quote quoteAuthor
456ebf0e-fb42-ea11-967a-00155d012cc0
Working together to provide solutions to problems proactively every day, for our clients and internally
Anonymous

This is an example account to show you what is possible for a profile page. Below you will see everything you need to create an awesome page.

Mr Bob Northwind is the owner of Northwind Traders Limited. He is the toughest Product Owner we have ever come across :) He was the main star at the FireBootcamp.

Headings


Input:

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


Alternatively, for Heading 1 and Heading 2, an underline-ish style:

Alt-Heading 1
======

Alt-Heading 2
------

 

Output:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

 

Alt-Heading 1

Alt-Heading 2

 

Links


Input:

[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[You can use numbers for reference-style link definitions][1]

Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or <http://www.example.com> and sometimes example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com

Output:

I'm an inline-style link

I'm an inline-style link with title

I'm a reference-style link

You can use numbers for reference-style link definitions

Or leave it empty and use the link text itself.

URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

 

Emphasis


Input:

**bold** or __bold__

*italic* or _italic_

**combined bold and _italic_**

~~strikethrough~~

 

Output:

bold or bold

italic or italic

combined bold and italic

strikethrough

 

Images


Input:

[[imgLg]]
| ![Large image](./Images/Bio/cat_computer.jpg)

[[imgMd]]
| ![Medium image](./Images/Bio/cat_computer.jpg)

[[imgSm]]
| ![Small image](./Images/Bio/cat_computer.jpg)

[[imgBadge]]
| ![Microsoft certification](../badges/Certification-microsoft-professional.jpg)

 

Output:

[[imgLg]] | Large image

[[imgMd]] | Medium image

[[imgSm]] | Small image

[[imgBadge]] | Microsoft certification

 

Videos


Input:

`youtube: https://www.youtube.com/embed/2G7z2mF7Onk`

 

Output:

youtube: https://www.youtube.com/embed/2G7z2mF7Onk

 

Twitter Card Embed


Input:

`oembed: https://twitter.com/SSW_TV/status/1232546593099919361`

 

Output:

oembed: https://twitter.com/SSW_TV/status/1232546593099919361

 

Horizontal Rules


Input:

---
Hyphens

***
Asterisks

___
Underscores

 

Output:


Hyphens


Asterisks


Underscores

 

Quotation


Input:

> A quote looks like this

 

Output:

A quote looks like this

 

Tables


Input:

Colons can be used to align columns.
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |


There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily.
You can also use inline Markdown.

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3

 

Output:

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

 

Markdown Less Pretty
Still renders nicely
1 2 3

 

Lists


Input:

1. Ordered List Item 1
2. Ordered List Item 2
3. Ordered List Item 3


* Unordered List Item 1
* Unordered List Item 2
* Unordered List Item 3


1. Ordered List Item
⋅⋅* Sub-list Item
⋅⋅⋅⋅* Sub sub-list item


* Unordered list can use asterisks
- Or minuses
+ Or pluses

 

Output:

  1. Ordered List Item 1
  2. Ordered List Item 2
  3. Ordered List Item 3

 

  • Unordered List Item 1
  • Unordered List Item 2
  • Unordered List Item 3

 

  1. Ordered List Item
    • Sub-list Item
      • Sub sub-list item

 

  • Unordered list can use asterisks
  • Or minuses
  • Or pluses

 

Related Links