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

https://github.com/gabrieldim/markdown-crash-course

Markdown Crash Course. Learn Markdown language on a simple way.
https://github.com/gabrieldim/markdown-crash-course

better-readme markdown markdown-to-html md md-file readme

Last synced: 11 months ago
JSON representation

Markdown Crash Course. Learn Markdown language on a simple way.

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 bold**

__This text is bold__

~~This text~~ is strikethrough

---
___

\ before the actual rule.

> This is a quote

[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim)

[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim "Follow me :)")

* Text 1
* Text 2
* Text 3
* Nested text 1
* Nested text 2
* Nested text 1
* Nested text 2

1. Text 1
2. Text 2
1. Nested text 1
5. Text 3 // it gives the appropriate order

`

This is paragraph

`

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

```java
//in the previous line we are saying the language that we are using.
BufferedReader br = new BufferedReader(New InputStreamReader(System.in));

String s = br.readLine();

```

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

```

| Name | Email |
| ----- | --------------- |
| Test | Test@gmail.com |
| Test2 | Test2@gmail.com |

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

> Inspired by: [Brad Traversy](https://github.com/bradtraversy)