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.
- Host: GitHub
- URL: https://github.com/gabrieldim/markdown-crash-course
- Owner: gabrieldim
- Created: 2021-06-26T13:32:08.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-23T21:02:11.000Z (almost 5 years ago)
- Last Synced: 2025-03-24T03:11:22.219Z (about 1 year ago)
- Topics: better-readme, markdown, markdown-to-html, md, md-file, readme
- Language: HTML
- Homepage:
- Size: 6.84 KB
- Stars: 101
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
`

```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)