-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
chore(fix): Fix some problems with demo quickref #1682
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -14,7 +14,7 @@ First thing is first. You can use *stars* or _underscores_ for italics. **Doub | |||||||||||||||||
Paragraphs are pretty easy too. Just have a blank line between chunks of text. | ||||||||||||||||||
|
||||||||||||||||||
> This chunk of text is in a block quote. Its multiple lines will all be | ||||||||||||||||||
> indended a bit from the rest of the text. | ||||||||||||||||||
> indented a bit from the rest of the text. | ||||||||||||||||||
> | ||||||||||||||||||
> > Multiple levels of block quotes also work. | ||||||||||||||||||
|
||||||||||||||||||
|
@@ -23,10 +23,13 @@ Sometimes you want to include some code, such as when you are explaining how `<h | |||||||||||||||||
If you want to include some code and have | ||||||||||||||||||
newlines preserved, indent the line with a tab | ||||||||||||||||||
or at least four spaces. | ||||||||||||||||||
|
||||||||||||||||||
Extra spaces work here too. | ||||||||||||||||||
This is also called preformatted text and it is useful for showing examples. | ||||||||||||||||||
The text will stay as text, so any *markdown* or <u>HTML</u> you add will | ||||||||||||||||||
not show up formatted. This way you can show markdown examples in a | ||||||||||||||||||
|
||||||||||||||||||
The text will stay as text, so any *markdown* or <u>HTML</u> you add will | ||||||||||||||||||
not show up formatted. | ||||||||||||||||||
This way you can show markdown examples in a | ||||||||||||||||||
markdown document. | ||||||||||||||||||
|
||||||||||||||||||
> You can also use preformatted text with your blockquotes | ||||||||||||||||||
|
@@ -109,15 +112,15 @@ You might want a few advanced lists: | |||||||||||||||||
them on the next line with no indentation. | ||||||||||||||||||
|
||||||||||||||||||
- Alternately, if that looks ugly, you can also | ||||||||||||||||||
indent the next line a bit for a prettier look. | ||||||||||||||||||
indent the next line a bit for a prettier look. | ||||||||||||||||||
|
||||||||||||||||||
- You can put large blocks of text in your list by just indenting with four spaces. | ||||||||||||||||||
|
||||||||||||||||||
This is formatted the same as code, but you can inspect the HTML | ||||||||||||||||||
This is formatted the same as code, but you can inspect the HTML | ||||||||||||||||||
and find that it's just wrapped in a `<p>` tag and *won't* be shown | ||||||||||||||||||
as preformatted text. | ||||||||||||||||||
|
||||||||||||||||||
You can keep adding more and more paragraphs to a single | ||||||||||||||||||
You can keep adding more and more paragraphs to a single | ||||||||||||||||||
list item by adding the traditional blank line and then keep | ||||||||||||||||||
on indenting the paragraphs with four spaces. You really need | ||||||||||||||||||
to only indent the first line, but that looks ugly. | ||||||||||||||||||
Comment on lines
+123
to
126
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.
Suggested change
|
||||||||||||||||||
|
@@ -130,7 +133,7 @@ to only indent the first line, but that looks ugly. | |||||||||||||||||
|
||||||||||||||||||
- Lists support preformatted text | ||||||||||||||||||
|
||||||||||||||||||
You just need to indent eight spaces. | ||||||||||||||||||
You just need to indent eight spaces. | ||||||||||||||||||
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.
Suggested change
|
||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
Even More | ||||||||||||||||||
|
@@ -145,7 +148,7 @@ If you need a horizontal rule you just need to put at least three hyphens, aster | |||||||||||||||||
**************************** | ||||||||||||||||||
_ _ _ _ _ _ _ | ||||||||||||||||||
|
||||||||||||||||||
Those three all produced horizontal lines. Keep in mind that three hyphens under any text turns that text into a heading, so add a blank like if you use hyphens. | ||||||||||||||||||
Those three all produced horizontal lines. Keep in mind that three hyphens under any text turns that text into a heading, so add a blank line if you use hyphens. | ||||||||||||||||||
|
||||||||||||||||||
Images | ||||||||||||||||||
------ | ||||||||||||||||||
|
@@ -154,7 +157,7 @@ Images work exactly like links, but they have exclamation points in front. They | |||||||||||||||||
|
||||||||||||||||||
![Google Logo](http://www.google.com/images/errors/logo_sm.gif) and ![Happy]. | ||||||||||||||||||
|
||||||||||||||||||
[Happy]: http://www.wpclipart.com/smiley/simple_smiley/smiley_face_simple_green_small.png ("Smiley face") | ||||||||||||||||||
[Happy]: https://wpclipart.com/smiley/happy/simple_colors/smiley_face_simple_green_small.png ("Smiley face") | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
Inline HTML | ||||||||||||||||||
|
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.