

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Explore the basics of markdown syntax for formatting text on github, including headers, emphasis, images, links, lists, user mentions, tables, and more. Learn how to create code blocks, use emojis, and reference issues.
Typology: Study notes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


As Kanye West said:
> We're living the future so > the present is our past.
As Kanye West said:
We're living the future so the present is our past.
*literal asterisks*
literal asterisks
Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown’s formaing syntax.
Markdown provides backslash escapes for the following characters:
\ backslash ` backtick
() parentheses
Markdown is a way to style text on the web. You control the display of the document; formaing words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *.
This text will be italic This will also be italic
This text will be bold This will also be bold
You can combine them
Format:
http://github.com - automatic!
GitHub
@mentions, #refs, links, formaing , and tags supported list syntax required (any unordered or ordered list supported) this is a complete item this is an incomplete item
First Header Second Header Content cell 1 Content cell 2 Content column 1 Content column 2
Typing an @ symbol, followed by a username, will notify that person to come and view the comment. This is called an “@mention”, because you’re mentioning the individual. You can also @mention teams within an organization.
You can create tables by assembling a list of words and dividing them with hyphens - (for the first row), and then separating each column with a pipe | :
Markdown coverts text with four leading spaces into a code block; with GFM you can wrap your code with ``` to create a code block without the leading spaces. Add an optional language identifier and your code with get syntax highlighting.
To see a list of every image we support, check out www.emoji-cheat-sheet.com
Any number that refers to an Issue or Pull Request will be automatically converted into a link.
defunkt# defunkt/github-flavored-markdown#
GitHub supports emoji! :+1: :sparkles: :camel: :tada: :rocket: :metal: :octocat:
GitHub supports emoji!
GitHub.com uses its own version of the Markdown syntax that provides an additional set of useful features, many of which make it easier to work with content on GitHub.com.
function test() { console.log("look ma`, no spaces"); }