Skip to content
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

Fix (readme): remove redundant lines #108

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ Object `ItemMeta` for Ordered and Unordered lists would be empty.
"type" : "list",
"data" : {
"style": "unordered",
"maxLevel": 1,
"items": [
{
"content": "Apples",
Expand All @@ -123,7 +122,6 @@ Object `ItemMeta` for Ordered and Unordered lists would be empty.
"style": "ordered",
"start": 2,
"counterType": "upper-roman",
"maxLevel": 4,
"items" : [
{
"content": "Apples",
Expand All @@ -147,7 +145,6 @@ Object `ItemMeta` for Ordered and Unordered lists would be empty.
"type" : "list",
"data" : {
"style": "checklist",
"maxLevel": 4,
"items" : [
{
"content": "Apples",
Expand Down
2 changes: 1 addition & 1 deletion src/ListRenderer/ChecklistRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class CheckListRenderer implements ListRendererInterface<ChecklistItemMet
protected config?: ListConfig;

/**
* Is NestedList Tool read-only option
* Is Editorjs List Tool read-only option
*/
private readOnly: boolean;

Expand Down
Loading