https://github.com/mishakorzik/markdown
study markdown from scratch
https://github.com/mishakorzik/markdown
allhackingtool allhackingtools coder github markdown markdown-help markdown-here programing
Last synced: 7 months ago
JSON representation
study markdown from scratch
- Host: GitHub
- URL: https://github.com/mishakorzik/markdown
- Owner: mishakorzik
- License: gpl-3.0
- Created: 2021-07-10T17:13:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-10T19:23:11.000Z (over 4 years ago)
- Last Synced: 2025-04-03T19:13:01.976Z (9 months ago)
- Topics: allhackingtool, allhackingtools, coder, github, markdown, markdown-help, markdown-here, programing
- Homepage: https://markdown-here.com/
- Size: 68.4 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown
#### study markdown from scratch. Hi, today is a great day to explore the markdown
#### • I recommend to look: AllHackingTools
--------------
• [Headers](#111) • [Emphasis](#222) • [Lists](#333) • [Links](#444)
• [Images](#555) • [Tables](#666) • [Blockquotes](#777) • [ticks](#999) • [Additional texts](#1100)
• [raised text](#1000) • [Horizontal Rule](#888)
• [Horizontal Rule](#888) • [text with slope](#1222) • [badges](#1333) • [menu of columns](#1444)
## Example 1
#### let's start with the text
```
# text 1
## text 1
### text 1
#### text 1
##### text 1
###### text 1
Alt-H1
======
Alt-H2
------
```
# text 1
## text 1
### text 1
#### text 1
##### text 1
###### text 1
Alt-H1
======
Alt-H2
------
#### This is how example 1 works. The more grids, the less text. Okay, let's start with another test
---
## Example 2
```
---
Hyphens
***
Asterisks
___
Underscores
```
#### you can now make lines that will separate the text
---
Hyphens
***
Asterisks
___
Underscores
#### the more stars or dashes, nothing will change, at least 3 dashes or asterisks.
---
## Example 3
```
_hello world!_
# _hello world!_
## _hello world!_
### _hello world!_
#### _hello world!_
##### _hello world!_
###### _hello world!_
```
#### to make the text in italics, you need to add underscores on the sides
_hello world!_
# _hello world!_
## _hello world!_
### _hello world!_
#### _hello world!_
##### _hello world!_
###### _hello world!_
#### That's how everything works, you can make the text large with a slope and small
---
## Example 4
```
* `Hi there! How are you?`
`Hi there! How are you?`
* It's a test
* _this text is italic_
```
* `Hi there! How are you?`
#### more text can be done without a dot but in a frame
`Hi there! How are you?`
#### or text without a border but with a period
* It's a test
* _this text is italic_
#### Here is our text wrapped in a frame
---
## Example 5
```
- I did not put an end
- I did not put an end
- I did not put an end
- I did not put an end
- I did not put an end
- no, well, I did not put a square
```
#### You can also put a dash instead of a period and make a list
- that's what I put a risk
___
- that's what I put a risk
- that's what I put a risk
- no, well, I did not put a square
_____
## Example 6
```
- [x] desing
- [x] Markdown
- [ ] test text
```
- [x] desing
- [x] Markdown
- [ ] test text
#### We proceed to Example 7
---
## Example 7
```
> You can make columns
>> And you can have two arrows
> **this is a test text**
```
> You can make columns
>> And you can have two arrows
> **this is a test text**
#### We proceed to Example 8
***
## Example 8
#### Now I will be a little difficult because there will be many commands
```
Test Button
Hello it's a test
Hello world! pass: 7586
Help Button
#### Hello it's a test button
#### _this is not an auxiliary button :)_
`Here, too, everything works and the tilt of the text and the point and frame`
* `so everything is fine here!`
```
Test Button
Hello it's a test
Hello world! pass: 7586
Help Button
#### Hello it's a test button
#### _this is not an auxiliary button :)_
`Here, too, everything works and the tilt of the text and the point and frame`
* `so everything is fine here!`
#### As you can see it turns out very nice and cool!
## Example 9
```

```

#### you can still make badges to make it beautiful
-------
## Example 10
[Options](#5932)
```
#### click on the word UP
[UP](#5932)
#### Where you put it will move to this command, but the command will not be visible
#### I put next to the word Example 9
********
## Example 11
#### Colons can be used to align columns.
```
| Tables | total | list |
| ------------- |:-------------:| -----:|
| Green | 788 and 1207 | 122 |
| While | 544 and 568 | 176 |
| Yellow | 282 and 775 | 212 |
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
```
| Tables | total | list |
| ------------- |:-------------:| -----:|
| Green | 788 and 1207 | 122 |
| While | 544 and 568 | 176 |
| Yellow | 282 and 775 | 212 |
#### the tables turn out very beautiful
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
_______
## Example 12
```
[I'm an inline-style link](https://www.google.com)
[I'm a reference-style link][Arbitrary case-insensitive reference text]
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself]
URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or and sometimes
example.com (but not on Github, for example).
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
```
[I'm an inline-style link](https://www.google.com)
[I'm a reference-style link][Arbitrary case-insensitive reference text]
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself]
URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or and sometimes
example.com (but not on Github, for example).
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
--------
## Example 13
```
Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
```
Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
__________
## Example 14
```
Inline-style:

Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo 2"
```
#### you can also insert images
Inline-style:

Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo 2"