{"id":44520778,"url":"https://github.com/editor-js/list-legacy","last_synced_at":"2026-02-13T17:38:50.292Z","repository":{"id":32800466,"uuid":"143007114","full_name":"editor-js/list-legacy","owner":"editor-js","description":"List Tool for Editor.js 2.0","archived":false,"fork":false,"pushed_at":"2024-11-13T18:37:41.000Z","size":1705,"stargazers_count":58,"open_issues_count":29,"forks_count":71,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T05:14:56.578Z","etag":null,"topics":["codex-editor","editor","li","list","ul"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/editor-js.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-31T11:48:03.000Z","updated_at":"2025-10-08T11:25:39.000Z","dependencies_parsed_at":"2023-11-09T12:46:16.518Z","dependency_job_id":"258659e7-65a6-445f-8ee2-5c198678de67","html_url":"https://github.com/editor-js/list-legacy","commit_stats":{"total_commits":78,"total_committers":18,"mean_commits":4.333333333333333,"dds":0.8205128205128205,"last_synced_commit":"2977364201cc1c35ac6ae2a718f4868c1be27512"},"previous_names":["codex-editor/list","editor-js/list-legacy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/editor-js/list-legacy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editor-js%2Flist-legacy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editor-js%2Flist-legacy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editor-js%2Flist-legacy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editor-js%2Flist-legacy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/editor-js","download_url":"https://codeload.github.com/editor-js/list-legacy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editor-js%2Flist-legacy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29413520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codex-editor","editor","li","list","ul"],"created_at":"2026-02-13T17:38:49.237Z","updated_at":"2026-02-13T17:38:50.278Z","avatar_url":"https://github.com/editor-js.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://badgen.net/badge/Editor.js/v2.0/blue)\n\n# List Tool for Editor.js\n\n\u003e [!IMPORTANT]\n\u003e This repository is deprecated and is no longer supported.\nTake a look at a new repository [List tool](https://github.com/editor-js/list) with more functionality and compatibility with old data.\n\n![](assets/example.gif)\n\n## Installation\n\nGet the package\n\n```shell\nyarn add @editorjs/list\n```\n\nInclude module at your application\n\n```javascript\nimport List from \"@editorjs/list\";\n```\n\nOptionally, you can load this tool from CDN [JsDelivr CDN](https://cdn.jsdelivr.net/npm/@editorjs/list@latest)\n\n## Usage\n\nAdd the List Tool to the `tools` property of the Editor.js initial config.\n\n```javascript\nimport EditorJS from '@editorjs/editorjs';\nimport List from '@editorjs/list';\n\nvar editor = EditorJS({\n  // ...\n  tools: {\n    ...\n    list: {\n      class: List,\n      inlineToolbar: true,\n      config: {\n        defaultStyle: 'unordered'\n      }\n    },\n  },\n});\n```\n\n## Config Params\n\n| Field        | Type     | Description                                                    |\n| ------------ | -------- | -------------------------------------------------------------- |\n| defaultStyle | `string` | type of a list: `ordered` or `unordered`, default is `ordered` |\n\n## Tool's settings\n\n![](https://capella.pics/bf5a42e4-1350-499d-a728-493b0fcaeda4.jpg)\n\nYou can choose list`s type.\n\n## Output data\n\n| Field | Type       | Description                              |\n| ----- | ---------- | ---------------------------------------- |\n| style | `string`   | type of a list: `ordered` or `unordered` |\n| items | `string[]` | the array of list's items                |\n\n```json\n{\n    \"type\" : \"list\",\n    \"data\" : {\n        \"style\" : \"unordered\",\n        \"items\" : [\n            \"This is a block-styled editor\",\n            \"Clean output data\",\n            \"Simple and powerful API\"\n        ]\n    }\n},\n```\n\n## I18n support\n\nThis tool supports the [i18n api](https://editorjs.io/i18n-api).\nTo localize UI labels, put this object to your i18n dictionary under the `tools` section:\n\n```json\n\"list\": {\n  \"Ordered\": \"Нумерованный\",\n  \"Unordered\": \"Маркированный\"\n}\n```\n\nSee more instructions about Editor.js internationalization here: [https://editorjs.io/internationalization](https://editorjs.io/internationalization)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feditor-js%2Flist-legacy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feditor-js%2Flist-legacy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feditor-js%2Flist-legacy/lists"}