Introduction to markdowmn
What is markdown format?
Markdown is a language for form formatting text used to write content on the web.
Benefits
+ It's commonly used to write quickly without having to take time using the formatting toolbal of text editors.
+ Designed to be easily converted to HTML and many other formats using a tool of the same name.
+ Easy to learn syntax
+ Focus on writing
Details
Heading
In order to create a heading with the biggest font-size like this
H1
You could use #:
# heading 1
use # heading 2
H2
H3
H4
H5
H6
This is a bold text
This is italic text
This is a bold and italic text
This a strikethrough text
Code
# This is a block of code
def method
... logic
end
<html>
<head>
<style />
</head>
<body>
<span>Text here</span>
<h1>Heading</h1>
<strong>a important text</strong>
</body>
</html>
- word
- avsdvsdv
- fbfdgsbsb
- abc
This is a quote
italic text bold text
Conclusion
Markdown helps people to write documents quickly and efficiently, it makes it easier for readers to read and understand.
Preview the markdown document in neovim
in neovim
:MarkDownPreview