You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating links to other websites in the 03-links.md file
Adding your accomplishments to the 04-lists.md file
Using emphasis like bold and italics in the 05-emphasis.md file
Learned about Jekyll Themes
Now that you have mastered the basics of Markdown @javarv87, 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.
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,
In the words of Abraham Lincoln:
> Pardon my French
In the words of Abraham Lincoln:
Pardon my French
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 |:
```
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
```
First Header
Second Header
Content from cell 1
Content from cell 2
Content in the first column
Content in the second column
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 with inline 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`
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. :taco:
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'}) } }
🎉 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 @javarv87, 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: