Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zahediparsa/markdown


https://github.com/zahediparsa/markdown

Last synced: 11 days ago
JSON representation

Awesome Lists containing this project

README

        

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

*This text is italic*

_This text is italic_

**This text is strong**

__This text is strong__

~~This text~~ is strikethrough

---
___

>This is a quot

[simple google](https://www.google.com "Hover title")

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

1. Item number one
1. Item number two
1. Item number three

`

This is a paragraph

`

![Markdown Logo](https://markdown-here.com/img/icon256.png)

```bash
npm install babel

npm run test
```

```javascript
console.log('Markdown is super cool!!!');

class Modal {
constructor(name) {
this._name = name;
}
}
```

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

| Name | Email |
| ----- | ------------ |
| John | [email protected] |
| Jane | [email protected] |

* [X] Task 1
* [X] Task 2
* [ ] Task 3
* [ ] Task 4