-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More to learn #5
Comments
|
L |
Duplicate of #michaeljump123 |
🎉 Congratulations, you've completed this course!
During this course you successfully:
01-name.md
file02-image.md
file03-links.md
file04-lists.md
file05-emphasis.md
fileNow that you have mastered the basics of Markdown @akbarratt, here's some quick information about some of the other cool features we didn't cover.
More Links in Markdown
Username and Team @mentions
Username and Team @mentions
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.@githubteacher
Cross Links
Cross Links
You can bring up a list of suggested Issues and Pull Requests within the repository by typing #. Type the Issue or Pull Request number or title to filter the list, and then press either tab or enter to complete the highlighted result.
Additionally, references to Issues and Pull Requests are automatically converted to shortened links to the Issue or Pull Request. For example,
https://github.com/jlord/sheetsee.js/issues/26
#
and Issue or Pull Request numberGH-
and Issue or Pull Request numberUsername/Repository#
and Issue or Pull Request numberLinking Specific Commits
Linking Specific Commits
References to a commit's ID (commonly called a SHA or hash) are automatically converted into shortened links to the commit on GitHub. For example,
Formatting Markdown
Quotes
Quotes
You can quote text with a
>
.In the words of Abraham Lincoln:
Tables
Tables
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 |:
Inline Code Blocks
Inline Code Blocks
Sometimes, it makes text easier to read if you specify a certain term as
code
. The word "code" in the previous sentence was distinguished in markdown withinline code blocks
.Inline code is just one ``` character on either side of the text, and can be used within paragraphs, headers, or other markdown.
inline code is just one backtick
Separate Code Blocks
Separate Code Blocks
If you need to separate out a larger block of code, use three ``` characters instead of one, and set the text aside in its own paragraph. This is how the course shows you how markdown looks without actually formatting it.
Anything put in this paragraph will not be formatted even if it would normally be recognized in this setting. 🌮
Syntax Highlighting
Syntax Highlighting
In addition to code blocks, you can specify how the code should be formatted by language. For example, when we add the language after the first three ``` characters, the formatting is specific to the programming language.
What we type:
javascript function fancyAlert(arg) { if(arg) { $.facebox({div:'#foo'}) } }
What we see:
Summary dropdown
Summary dropdown
You might have noticed that most of the text in this issue is formatted in summary dropdowns. Here's how to make them with Markdown:
The text was updated successfully, but these errors were encountered: