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
paragraphs are separted by empty lines. Within a paragraph it is simply press for a new line.
for example, this is another paragraph,but it belongs to previous line in the paragraph
Italic
Italic
bold
bold
strikethrough
- Item 1
- Item 2
- Item 3
- item 3a
- item 3b
- Item 4
- Step1
- Step2
- Step3
- Step 3.1
- Step 3.2
- Step4
- Step 1
- Step 2
- ul 1
- ul 2
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
use the backtick to refer to a function()
.
There is a literal backtick `(`)
here.
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:
document.getElementById("test");
window.onbeforeunload = function() {
saveCoverage();
};
This is an example inline link
This link has a title attribute.
links are auto-detected in text: http://example.com
Day | Meal | Price |
---|---|---|
Monday | pasta | $5 |
Tuesday | chicken | $8 |
This is only an attempt to learn md inspired from this link.