:tada: Congratulations, you've completed this course!
During this course you successfully:
Added a checklist to an Issue comment
Enabled GitHub Pages on your repository
Committed changes to your webpage by:
Adding headers to the 01-name.md file
Including an image in the 02-image.md file
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 @ShimantaBhuyan, 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
```
@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,
| Reference type | Raw reference | Short link |
| -------------- | ------------- | ---------- |
| Issue or Pull Request URL | `https://github.com/jlord/sheetsee.js/issues/26` | [#26](https://github.com/jlord/sheetsee.js/issues/26) |
| `#` and Issue or Pull Request number | #26 | [#26](https://github.com/jlord/sheetsee.js/issues/26) |
| `GH-` and Issue or Pull Request number | GH-26 | [GH-26](https://github.com/jlord/sheetsee.js/issues/26) |
| `Username/Repository#` and Issue or Pull Request number | jlord/sheetsee.js#26 | [jlord/sheetsee.js#26](https://github.com/jlord/sheetsee.js/issues/26) |
Linking 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,
| Reference type | Raw reference | Short link |
| -------------- | ------------- | ---------- |
| Commit URL | https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e | [a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) |
| SHA | a5c3785ed8d6a35868bc169f07e40e889087fd2e | [a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) |
| User@SHA | jlord@a5c3785ed8d6a35868bc169f07e40e889087fd2e | [jlord@a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) |
| Username/Repository@SHA | User/Repository@SHA: jlord/sheetsee.js@a5c3785ed8d6a35868bc169f07e40e889087fd2e | [jlord/sheetsee.js@a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e)|
Formatting Markdown
Quotes
### Quotes
You can quote text with a `>`.
```
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. :taco:
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:
```javascript
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
```
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:
```
Quotes
Content here
```
:tada: 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 @ShimantaBhuyan, 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 ``` @githubteacherCross 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, | Reference type | Raw reference | Short link | | -------------- | ------------- | ---------- | | Issue or Pull Request URL | `https://github.com/jlord/sheetsee.js/issues/26` | [#26](https://github.com/jlord/sheetsee.js/issues/26) | | `#` and Issue or Pull Request number | #26 | [#26](https://github.com/jlord/sheetsee.js/issues/26) | | `GH-` and Issue or Pull Request number | GH-26 | [GH-26](https://github.com/jlord/sheetsee.js/issues/26) | | `Username/Repository#` and Issue or Pull Request number | jlord/sheetsee.js#26 | [jlord/sheetsee.js#26](https://github.com/jlord/sheetsee.js/issues/26) |Linking 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, | Reference type | Raw reference | Short link | | -------------- | ------------- | ---------- | | Commit URL | https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e | [a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) | | SHA | a5c3785ed8d6a35868bc169f07e40e889087fd2e | [a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) | | User@SHA | jlord@a5c3785ed8d6a35868bc169f07e40e889087fd2e | [jlord@a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e) | | Username/Repository@SHA | User/Repository@SHA: jlord/sheetsee.js@a5c3785ed8d6a35868bc169f07e40e889087fd2e | [jlord/sheetsee.js@a5c3785](https://github.com/jlord/sheetsee.js/commit/a5c3785ed8d6a35868bc169f07e40e889087fd2e)|Formatting Markdown
Quotes
### Quotes You can quote text with a `>`. ``` In the words of Abraham Lincoln: > Pardon my French ``` In the words of Abraham Lincoln: > Pardon my FrenchTables
### 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 columnInline 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. :taco: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: ```javascript function fancyAlert(arg) { if(arg) { $.facebox({div:'#foo'}) } } ```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: ```Quotes
Content here