-
Notifications
You must be signed in to change notification settings - Fork 30
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
section on tabels quotes and task lists added #202
Open
denesnori
wants to merge
1
commit into
master
Choose a base branch
from
README/add/markdown-cheat_sheet-newsections-added
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,90 @@ The number of hashtags indicates what kind of header you are creating. | |
|
||
repeat(foo, 5); | ||
``` | ||
* Tables | ||
* Each header cell must be seperated by at least three dashes. | ||
* The outer pipes ('|') are optional. | ||
* [Mardown table generator](http://www.tablesgenerator.com/markdown_tables) is a useful tool to make your life easier. | ||
|
||
``` | ||
| table | example | :D | | ||
| ------------- |:-------------:| -----:| | ||
| col 1 is | left-aligned | :) | | ||
| left-aligned | is default | O_o | | ||
| col 2 is | centered | ;D | | ||
| col 3 is | right-aligned | :P | | ||
``` | ||
|
||
| table | example | :D | | ||
| ------------- |:-------------:| -----:| | ||
| col 1 is | left-aligned | :) | | ||
| left-aligned | is default | O_o | | ||
| col 2 is | centered | ;D | | ||
| col 3 is | right-aligned | :P | | ||
|
||
``` | ||
*This* | *is* | *also* | ||
:---: | :--- :| :---: | ||
valid | although | not | ||
so | pretty! | :) | ||
``` | ||
*This* | *is* | *also* | ||
:---: | :---: | :---: | ||
valid | although | not | ||
so | pretty! | :) | ||
|
||
* Quotes | ||
* Texts can be quoted with \<. | ||
|
||
``` | ||
>Rudyard Kipling: If | ||
>If you can dream—and not make dreams your master; | ||
> If you can think—and not make thoughts your aim; | ||
>If you can meet with Triumph and Disaster | ||
> And treat those two impostors just the same; | ||
>If you can bear to hear the truth you’ve spoken | ||
> Twisted by knaves to make a trap for fools, | ||
>Or watch the things you gave your life to, broken, | ||
> And stoop and build ’em up with worn-out tools. | ||
``` | ||
|
||
>Rudyard Kipling: If | ||
>If you can dream—and not make dreams your master; | ||
> If you can think—and not make thoughts your aim; | ||
>If you can meet with Triumph and Disaster | ||
> And treat those two impostors just the same; | ||
>If you can bear to hear the truth you’ve spoken | ||
> Twisted by knaves to make a trap for fools, | ||
>Or watch the things you gave your life to, broken, | ||
> And stoop and build ’em up with worn-out tools. | ||
|
||
* Task lists | ||
* Tasks can be markes as complete or incomplete. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'Tasks can be marked' |
||
|
||
* \[ \] list a task prefacing a list item. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'lists a task' |
||
|
||
* \[x\] marks a task as completed. | ||
|
||
``` | ||
- [x] Find a topic | ||
- [x] Write a README | ||
- [ ] Push my commits to GitHub | ||
- [ ] Open a new pull request | ||
``` | ||
|
||
- [x] Find a topic | ||
- [x] Write a README | ||
- [ ] Push my commits to GitHub | ||
- [ ] Open a new pull request | ||
* Ignore markdown Formatting by using the '\' escape character. | ||
|
||
``` | ||
Let's \*solve\* a \_Kata\_! | ||
``` | ||
|
||
Let's \*solve\* a \_Kata\_! | ||
|
||
|
||
### Further readings | ||
|
||
- [Markdown basics by John Gruber](https://daringfireball.net/projects/markdown/basics) | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good if you spell out how left / centre / right-aligning is achieved, as it's not too obvious at the moment