Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit de2b6d0

Browse files
committed
markdown article cleanup
1 parent 09cd1dd commit de2b6d0

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

docs/hackers/using-markdown.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Learn to format these in markdown:|
3333

3434
<h3 id="headers">HEADERS</h3>
3535

36-
Input:
36+
Markdown Input:
3737

3838
```
3939
A First Level Header
@@ -51,7 +51,7 @@ Output:
5151

5252
<h3 id="blockquote">BLOCKQUOTE</h3>
5353

54-
Input:
54+
Markdown Input:
5555

5656
```
5757
>text in blockquote
@@ -84,7 +84,7 @@ Output:
8484

8585
#### Unordered Lists
8686

87-
Input:
87+
Markdown Input:
8888

8989
```
9090
* Candy.
@@ -114,7 +114,7 @@ all produce the same output:
114114

115115
#### Numbered Lists
116116

117-
Input:
117+
Markdown Input:
118118

119119
```
120120
1. Red
@@ -144,7 +144,7 @@ Markdown supports two styles for creating links: *inline* and *reference*. With
144144

145145
Inline-style links use parentheses immediately after the link text. For example:
146146

147-
Input:
147+
Markdown Input:
148148
```
149149
This is an [example link](http://example.com/).
150150
```
@@ -161,7 +161,7 @@ This is an [example link](http://example.com/ "With a Title").
161161

162162
Reference-style links allow you to refer to your links by names, which you define elsewhere in your document:
163163

164-
Input:
164+
Markdown Input:
165165

166166
```
167167
I get 10 times more traffic from [Google][1] than from
@@ -178,7 +178,7 @@ Output:
178178

179179
The title attribute is optional. Link names may contain letters, numbers and spaces, but are not case sensitive:
180180

181-
Input:
181+
Markdown Input:
182182

183183
```
184184
I start my morning with a cup of coffee and
@@ -198,7 +198,7 @@ You don't need to use markdown to create a `mailto:` link. Simply enter the emai
198198

199199
In a regular paragraph, you can create code span by wrapping text in back tick quotes. Any ampersands (&) and angle brackets (< or >) will automatically be translated into HTML entities. This makes it easy to use Markdown to write about HTML example code.
200200

201-
Input:
201+
Markdown Input:
202202

203203
```
204204
The text has sample `code`
@@ -210,7 +210,7 @@ Output:
210210

211211
To specify an entire block of pre-formatted code, wrap the text within 3 back tick quotes \`\`\`. Just like with code spans, &, <, and > characters will be escaped automatically.
212212

213-
Input:
213+
Markdown Input:
214214

215215
![codeblock input](./images/markdown-codeblock-input.png)
216216

@@ -220,7 +220,7 @@ Output:
220220

221221
To use syntax highlighting, specify the content type after the three opening back tick quotes.
222222

223-
Input:
223+
Markdown Input:
224224

225225
```
226226
```javascript
@@ -236,7 +236,7 @@ Go to the following web page to see which content types are available for syntax
236236
<h3 id="user">USER MENTIONS</h3>
237237
You can mention a user by prefixing username with '@' symbol
238238

239-
Input:
239+
Markdown Input:
240240

241241
```
242242
@demo-member reported the issue

docs/programs/using-markdown.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Learn to format these in markdown:|
3333

3434
<h3 id="headers">HEADERS</h3>
3535

36-
Input:
36+
Markdown Input:
3737

3838
```
3939
A First Level Header
@@ -51,7 +51,7 @@ Output:
5151

5252
<h3 id="blockquote">BLOCKQUOTE</h3>
5353

54-
Input:
54+
Markdown Input:
5555

5656
```
5757
>text in blockquote
@@ -84,7 +84,7 @@ Output:
8484

8585
#### Unordered Lists
8686

87-
Input:
87+
Markdown Input:
8888

8989
```
9090
* Candy.
@@ -114,7 +114,7 @@ all produce the same output:
114114

115115
#### Numbered Lists
116116

117-
Input:
117+
Markdown Input:
118118

119119
```
120120
1. Red
@@ -144,7 +144,7 @@ Markdown supports two styles for creating links: *inline* and *reference*. With
144144

145145
Inline-style links use parentheses immediately after the link text. For example:
146146

147-
Input:
147+
Markdown Input:
148148
```
149149
This is an [example link](http://example.com/).
150150
```
@@ -161,7 +161,7 @@ This is an [example link](http://example.com/ "With a Title").
161161

162162
Reference-style links allow you to refer to your links by names, which you define elsewhere in your document:
163163

164-
Input:
164+
Markdown Input:
165165

166166
```
167167
I get 10 times more traffic from [Google][1] than from
@@ -178,7 +178,7 @@ Output:
178178

179179
The title attribute is optional. Link names may contain letters, numbers and spaces, but are not case sensitive.
180180

181-
Input:
181+
Markdown Input:
182182

183183
```
184184
I start my morning with a cup of coffee and
@@ -198,7 +198,7 @@ You don't need to use markdown to create a `mailto:` link. Simply enter the emai
198198

199199
In a regular paragraph, you can create code span by wrapping text in back tick quotes. Any ampersands (&) and angle brackets (< or >) will automatically be translated into HTML entities. This makes it easy to use Markdown to write about HTML example code.
200200

201-
Input:
201+
Markdown Input:
202202

203203
```
204204
The text has sample `code`
@@ -210,7 +210,7 @@ Output:
210210

211211
To specify an entire block of pre-formatted code, wrap the text within 3 back tick quotes \`\`\`. Just like with code spans, &, <, and > characters will be escaped automatically.
212212

213-
Input:
213+
Markdown Input:
214214

215215
![codeblock input](./images/markdown-codeblock-input.png)
216216

@@ -220,7 +220,7 @@ Output:
220220

221221
To use syntax highlighting, specify the content type after the three opening back tick quotes.
222222

223-
Input:
223+
Markdown Input:
224224

225225
```
226226
```javascript
@@ -236,7 +236,7 @@ Go to the following web page to see which content types are available for syntax
236236
<h3 id="user">USER MENTIONS</h3>
237237
You can mention a user by prefixing username with '@' symbol
238238

239-
Input:
239+
Markdown Input:
240240

241241
```
242242
@demo-member reported the issue

0 commit comments

Comments
 (0)