Github Markdown(CommonMark) cheat sheet. GitHub Gist: instantly share code, notes, and snippets. Www.emoji-cheat-sheet.com ISSUE REFERENCES Any number that refers to an Issue or Pull Request will be automatically converted into a link. #1 defunkt#1 defunkt/github-flavored-markdown#1 GitHub supports emoji!:+1::sparkles::camel::tada::rocket::metal::octocat: GitHub supports emoji! GitHub.com uses its own version of. GitHub Flavored Markdown 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. Note that some features of GitHub Flavored Markdown are only available in the descriptions and comments of Issues and Pull Requests.
Cheat Sheet A list of frequently used basic and extended Markdown syntax has been provided in the cheat sheet linked below. Go ahead, fork this gist or bookmark it and use it as a quick reference to take your Markdown skills to the next level! Fun fact: This entire cheat sheet has been created using Markdown itself! Markdown Cheat Sheet. GitHub cheat sheet, or; Mastering Markdown by GitHub; Markdown and GitHub.com. GitHub.com uses markdown extensively within its ecosystem for documentation, readme files, as well as allowing for issues to be written using markdown. For every homework assignment you submit, you will also write a short report in markdown.
Github Markup Cheat Sheet Excel
#Visual Merge, P4Merge |
https://forum.unity3d.com/threads/plastic-scm-version-control-for-unity.317888/ |
#DOMContentLoaded PWA |
#Chrome --enable-features=MITMSoftwareInterstitial |
--disable-web-security --allow-file-access-from-files --user-data-dir='D:/Chrome' |
#Youtube |
youtube-dl.exe --write-auto-sub --sub-lang en --sub-format srt --convert-subs srt |
## |
http://blog.studiominiboss.com/pixelart |
##https://education.github.com/discount_requests/new |
# Header 1 # |
## Header 2 ## |
### Header 3 ### (Hashes on right are optional) |
#### Header 4 #### |
##### Header 5 ##### |
## Markdown plus h2 with a custom ID ## {#id-goes-here} |
[Link back to H2](#id-goes-here) |
This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one |
line (or many), and can drone on for hours. |
Here is a Markdown link to [Warped](http://warpedvisions.org), and a literal . |
Now some SimpleLinks, like one to [google] (automagically links to are-you- |
feeling-lucky), a [wiki: test] link to a Wikipedia page, and a link to |
[foldoc: CPU]s at foldoc. |
Now some inline markup like _italics_, **bold**, and `code()`. Note that underscores in |
words are ignored in Markdown Extra. |
![picture alt](/images/photo.jpeg 'Title is optional') |
> Blockquotes are like quoted text in email replies |
>> And, they can be nested |
* Bullet lists are easy too |
- Another one |
+ Another one |
1. A numbered list |
2. Which is numbered |
3. With periods and a space |
And now some code: |
// Code is just text indented a bit |
which(is_easy) to_remember(); |
~~~ |
// Markdown extra adds un-indented code blocks too |
if (this_is_more_code true && !indented) { |
// tild wrapped code blocks, also not indented |
} |
~~~ |
Text with |
two trailing spaces |
(on the right) |
can be used |
for things like poems |
### Horizontal rules |
* * * * |
**** |
-------------------------- |
<div markdown='1'> |
This is a div wrapping some Markdown plus. Without the DIV attribute, it ignores the |
block. |
</div> |
## Markdown plus tables ## |
| Header | Header | Right | |
| ------ | ------ | -----: | |
| Cell | Cell | $10 | |
| Cell | Cell | $20 | |
* Outer pipes on tables are optional |
* Colon used for alignment (right versus left) |
## Markdown plus definition lists ## |
Bottled water |
: $ 1.25 |
: $ 1.55 (Large) |
Milk |
Pop |
: $ 1.75 |
* Multiple definitions and terms are possible |
* Definitions can include multiple paragraphs too |
*[ABBR]: Markdown plus abbreviations (produces an <abbr> tag) |