Markdown is a way to style text on the web that allows us to :
- control the display of the document
- formatting words as bold or italic
- adding images
- creating lists
Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *.
an example to make a one worde bollder than oothers
It's very easy to make some words bold or other words italic
To create a heading, add one to six # symbols before your heading text. The number of # you use will determine the size of the heading.
#The largest heading
##The second largest heading
######The smallest heading
You can indicate emphasis with bold, italic, or strikethrough text
You can quote text with a >.
In the words of Abraham Lincoln:
You can call out code or a command within a sentence with single backticks. The text within the backticks will not be formatted.
Use git status to list all new or modified files that haven't yet been committed.
You can create an inline link by wrapping link text in brackets [ ], and then wrapping the URL in parentheses ( ). You can also use the keyboard shortcut command + k to create a link.
This site was built using GitHub Pages.
You can link directly to a section in a rendered file by hovering over the section heading to expose the link:
You can define relative links and image paths in your rendered files to help readers navigate to other files in your repository.
You can make an unordered list by preceding one or more lines of text with - or *.
To create a task list, preface list items with a regular space character followed by [ ]. To mark a task as complete, use [x].
- an example
- fill in
You can mention a person or team on GitHub by typing @ plus their username or team name.
You can add emoji to your writing by typing :EMOJICODE:.
You can create a new paragraph by leaving a blank line between lines of text.
You can tell GitHub to ignore (or escape) Markdown formatting by using \ before the Markdown character.