View On
GitHub

Markdown to NinjaOne

Markdown Input

# Simple Markdown Sample

## Heading Levels
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5 (This one will fail, NinjaOne Doesn't support more than h4)

## Text Formatting
==marked==
**Bold text**
_Italicized text_
~~Strikethrough~~
**_Bold and Italicized text_**
++Underline++
~Subscript~
^Superscript^
==Marked==

**_~~++All ^of^ ~the~ ==Marked== Formats++~~_**

_~~++All ^of^ ~the~ Formats++~~_

~~++All ^of^ ~the~ Formats++~~

++All ^of^ ~the~ Formats++

~~All ^of^ ~the~ Formats~~

All ^of^ ~the~ Formats

## Lists
### Unordered List
- Item 1
- Sub-item 1.1
- Sub-item 1.2
- **hello**
- Item 2

### Ordered List
1. Step 1
2. Step 2
3. Step 3

## Links
[Visit NinjaOne](https://www.NinjaOne.com)

## Images
![Markdown Logo](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)
![](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)

## Blockquotes
> "Markdown is a lightweight markup language with plain text formatting syntax."
> — Wikipedia

## Code
Inline code: `print("Hello, World!")`
Block Code:
```php
window.onload = function() {
confirmInput();
};
```

## Table
| Month | Savings |
| -------- | ------- |
| January | $250 |
| February | $80 |
| March | $420 |

NinjaOne "Source" Output