Skip to content

Latest commit

 

History

History
80 lines (44 loc) · 2.27 KB

File metadata and controls

80 lines (44 loc) · 2.27 KB

Markdown

Markdown is a way to style text on the web that allows us to :

  1. control the display of the document
  2. formatting words as bold or italic
  3. adding images
  4. 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

1.heading

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

2.Styling text

You can indicate emphasis with bold, italic, or strikethrough text

3.Quoting text

You can quote text with a >.

In the words of Abraham Lincoln:

4.Quoting code

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.

5.links

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.

6.Section links

You can link directly to a section in a rendered file by hovering over the section heading to expose the link:

7.Relative links

You can define relative links and image paths in your rendered files to help readers navigate to other files in your repository.

8.Lists

You can make an unordered list by preceding one or more lines of text with - or *.

9.Task lists

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

10.Mentioning people and teams

You can mention a person or team on GitHub by typing @ plus their username or team name.

11.Using emoji

You can add emoji to your writing by typing :EMOJICODE:.

12.Paragraphs

You can create a new paragraph by leaving a blank line between lines of text.

13.Ignoring Markdown formatting

You can tell GitHub to ignore (or escape) Markdown formatting by using \ before the Markdown character.