{"id":16007620,"url":"https://github.com/uzitech/marked-linkify-it","last_synced_at":"2026-04-07T08:02:42.254Z","repository":{"id":36960662,"uuid":"331679041","full_name":"UziTech/marked-linkify-it","owner":"UziTech","description":"marked using linkify-it for urls","archived":false,"fork":false,"pushed_at":"2025-03-10T08:56:20.000Z","size":7179,"stargazers_count":2,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-10T09:45:34.430Z","etag":null,"topics":["linkify-it","marked"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/marked-linkify-it","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/UziTech.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":"2021-01-21T16:01:10.000Z","updated_at":"2025-03-10T08:56:16.000Z","dependencies_parsed_at":"2023-02-16T09:16:14.418Z","dependency_job_id":"4c0891e3-fd0e-47ab-9faf-5fa01d2155a2","html_url":"https://github.com/UziTech/marked-linkify-it","commit_stats":{"total_commits":665,"total_committers":8,"mean_commits":83.125,"dds":0.09624060150375935,"last_synced_commit":"7a1670fdd04e99228a1a97291b328af3b59eb2d6"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UziTech%2Fmarked-linkify-it","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UziTech%2Fmarked-linkify-it/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UziTech%2Fmarked-linkify-it/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UziTech%2Fmarked-linkify-it/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UziTech","download_url":"https://codeload.github.com/UziTech/marked-linkify-it/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244144150,"owners_count":20405356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["linkify-it","marked"],"created_at":"2024-10-08T12:04:19.936Z","updated_at":"2026-04-07T08:02:42.225Z","avatar_url":"https://github.com/UziTech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# marked-linkify-it\n\nmarked using [linkify-it](https://github.com/markdown-it/linkify-it) for urls\n\n# Usage\n\n```js\nimport { marked } from \"marked\";\nimport markedLinkifyIt from \"marked-linkify-it\";\n\n// or UMD script\n// \u003cscript src=\"https://cdn.jsdelivr.net/npm/marked/lib/marked.umd.js\"\u003e\u003c/script\u003e\n// \u003cscript src=\"https://cdn.jsdelivr.net/npm/marked-linkify-it/lib/index.umd.js\"\u003e\u003c/script\u003e\n\nconst schemas = {};\nconst options = {};\n\nmarked.use(markedLinkifyIt(schemas, options));\n\nmarked(\"example.com\");\n// \u003cp\u003e\u003ca href=\"http://example.com\"\u003eexample.com\u003c/a\u003e\u003c/p\u003e\n```\n\n## `schemas`\n\nsee https://github.com/markdown-it/linkify-it#api\n\n*Note:* `#add()` doesn't work with this extension\n\n```JavaScript\nmarkedLinkifyIt.add('@', {...}) // Doesn't work, you need to pass a schema manually\n```\n\nInstead do:\n\n```JavaScript\nconst schemas = {\n\t'@': {\n\t\tvalidate: function (text, pos, self) {\n\t\t\t// ...\n\t\t},\n\t\tnormalize: function (match) {\n\t\t\t// ...\n\t\t}\n\t}\n};\n```\n\n## `options`\n\nsee https://github.com/markdown-it/linkify-it#api\n\nlinkify options plus the following additional options:\n\n### `tlds`\n\n`String|String[]`\n\nreplace or add tlds for fuzzy links/\n\n### `tldsKeepOld`\n\n`Boolean; Default: false`\n\n`true` to add domains instead of replacing domain list.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuzitech%2Fmarked-linkify-it","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuzitech%2Fmarked-linkify-it","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuzitech%2Fmarked-linkify-it/lists"}