This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from ckeditor/t/26
Feature: Block quote support. Closes #26.
- Loading branch information
Showing
5 changed files
with
77 additions
and
10 deletions.
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
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
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
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
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
## Autoformat | ||
|
||
1. Type `#` and press space in empty paragraph to replace it with the heading. | ||
1. Type `#` and press the space in an empty paragraph to replace it with a heading. | ||
|
||
2. Type `*` or `-` and press space in empty paragraph to replace it with list item. | ||
1. Type `*` or `-` and the press space in an empty paragraph to replace it with a list item. | ||
|
||
3. Type number from the range **1-3** to replace empty paragraph with numbered list item. | ||
1. Type `> ` and press the space in an empty paragraph to replace it with a block quote. | ||
|
||
4. Type `*foobar*`/`_foobar_` to italicize `foobar`. `*`/`_` should be removed. | ||
1. Type a number from the range **1-3** to replace an empty paragraph with a numbered list item. | ||
|
||
5. Type `**foobar**`/`__foobar__` to bold `foobar`. `**`/`__` should be removed. | ||
1. Type `*foobar*`/`_foobar_` to italicize `foobar`. `*`/`_` should be removed. | ||
|
||
6. For every autoformat pattern: Undo until you'll see just the pattern (e.g. `- `). Typing should be then possible without triggering autoformatting again. | ||
1. Type `**foobar**`/`__foobar__` to bold `foobar`. `**`/`__` should be removed. | ||
|
||
7. Typing a different pattern in already converted block **must not** trigger autoformatting. For example, typing `- ` in heading should not convert heading to list. | ||
1. For every autoformat pattern: Undo until you'll see just the pattern (e.g. `- `). Typing should be then possible without triggering the autoformatting again. | ||
|
||
1. Typing a different pattern in an already converted block **must not** trigger the autoformatting. For example, typing `- ` in a heading should not convert a heading to a list. | ||
|