-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
131 lines (79 loc) · 2.54 KB
/
README.txt
File metadata and controls
131 lines (79 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# README
MD file called markdown file. It is a text file created using one of several possible dialects of the Markdown language. It is saved in plain text format but includes inline text symbols that define how to format text. MD files are designed for authoring plain text documentation that can be easily converted to HTML
Here we explore how we can write an md5 file from scratch. The original text file used to render the current page you are reading is given as readme.md.orig
# Section 1 - HEADINGS
# This is an H1
## This is an H2
###### This is an H6
This is also an H1
===================
This is also an H2
-------------------
# Section 2 - Paragraphs
paragraphs are separted by empty lines. Within a paragraph it is simply press <return> for a new line.
for example, this is another paragraph,but
it belongs to previous line in the paragraph
# Section 3 - Character styles
*Italic*
_Italic_
**bold**
__bold__
~~strikethrough~~
# Section 4 - Unordered List
* Item 1
* Item 2
* Item 3
* item 3a
* item 3b
* Item 4
# Section 5 - Ordered List
1. Step1
2. Step2
3. Step3
1. Step 3.1
2. Step 3.2
4. Step4
# Section 6 - List in List
1. Step 1
2. Step 2
* ul 1
* ul 2
# Section 7 - Quotes or citations
Following is an example of a quote
> Everybody Continues to be in its state of rest
> or state of motion unless
> it is acted upon by an external unbalanced force
# Section 8 - Inline code characters.
use the backtick to refer to a `function()`.
There is a literal ``backtick `(`)`` here.
# Section 9 - Code blocks
Indent every line of the block by at least 4 spaces.
This is a normal paragraph but
This is a code block.
With multiple lines.
Alternatively , you can use 3 backtick quote marks before and after.
```
This is a code block
```
To add syntax highlighting to a code block, add the name after the backticks:
```javascript
document.getElementById("test");
window.onbeforeunload = function() {
saveCoverage();
};
```
# Section 10 - Links
This is an [example](http://www.example.com/) inline link
[This link](http://example.com/ "Title") has a title attribute.
links are auto-detected in text: http://example.com
# Section 11 - Images

[imageid]: https:://images.com
![Reference Image][imageid]
# Section 12 - Tables
| Day | Meal | Price |
| ------|-------|-------|
| Monday| pasta | $5 |
| Tuesday| chicken | $8 |
# Reference
This is only an attempt to learn md inspired from [this](https://confluence.atlassian.com/bitbucketserver/markdown-syntax-guide-776639995.html) link.