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

https://github.com/kibria-khandaker/readme.md-file-code

Here some code tutorial for "README.md" file's
https://github.com/kibria-khandaker/readme.md-file-code

Last synced: 2 months ago
JSON representation

Here some code tutorial for "README.md" file's

Awesome Lists containing this project

README

        

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

*This text* is italic

_This text_ is italic

**This text** is italic

__This text__ is italic

~~This text~~ is strikethrough

---
___

> This is a quote

[Traversy Media](http://skillice.com/)

[Traversy Media](http://skillice.com/ "Skill ice")

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

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

`

This is a paragraph

`

![Markdown Logo](http://skillice.com/wp-content/themes/kibria/assets/img/kibria.png)

Use `code` for text.

```bash
npm install

npm start
```

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

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

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

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