{"id":13773994,"url":"https://github.com/ruiluntran/summernote-handlebars-autocomplete","last_synced_at":"2026-05-14T21:04:02.982Z","repository":{"id":215839568,"uuid":"732772557","full_name":"ruiluntran/summernote-handlebars-autocomplete","owner":"ruiluntran","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-17T21:09:44.000Z","size":243,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-24T05:42:01.725Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ruiluntran.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":"2023-12-17T19:22:57.000Z","updated_at":"2023-12-17T19:27:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"78901a1f-9d44-4755-9f18-c53ad49f6d48","html_url":"https://github.com/ruiluntran/summernote-handlebars-autocomplete","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.4285714285714286,"last_synced_commit":"bde28f5d12387465e8a6ecfabb510b938e8abee6"},"previous_names":["ruiluntran/summernote-handlebars-autocomplete"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ruiluntran/summernote-handlebars-autocomplete","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruiluntran%2Fsummernote-handlebars-autocomplete","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruiluntran%2Fsummernote-handlebars-autocomplete/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruiluntran%2Fsummernote-handlebars-autocomplete/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruiluntran%2Fsummernote-handlebars-autocomplete/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ruiluntran","download_url":"https://codeload.github.com/ruiluntran/summernote-handlebars-autocomplete/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruiluntran%2Fsummernote-handlebars-autocomplete/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33043249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-08-03T17:01:22.718Z","updated_at":"2026-05-14T21:04:02.964Z","avatar_url":"https://github.com/ruiluntran.png","language":"JavaScript","funding_links":[],"categories":["Plugins"],"sub_categories":["Insert"],"readme":"# Summernote Handlebars Autocomplete plugin\n\nSummernote handlebars autocomplete plugin for [summernote](https://github.com/summernote/summernote/).\n\n## Demo\n\nhttps://ruiluntran.github.io/summernote-handlebars-autocomplete/\n\n## Installation\n\nInclude the required files and the plugin file after summernote.min.js file.\n\n``` html\n\u003clink rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.1/css/bootstrap.min.css\"/\u003e\n\u003clink rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/summernote-bs4.min.css\"/\u003e\n        \n\u003cdiv id=\"summernote\"\u003e\u003c/div\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.1/js/bootstrap.bundle.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/summernote.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/summernote-bs4.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"../dist/summernote-handlebars-autocomplete.js\"\u003e\u003c/script\u003e\n```\n\n## Configuration\n\nTo configure the plugin, pass in the options object with the key: `handlebarsAutocomplete` to summernote.\n\n\n### Example\n\n```javascript\n$('#summernote').summernote({\n  placeholder: 'Placeholder',\n  handlebarsAutocomplete: {\n    getSuggestions: (value) =\u003e {\n      const suggestions = [\n        {\n          display: 'userName',\n          value: 'ruiluntran'\n        },\n        {\n          display: 'ensDomain',\n          value: 'ruiluntran.eth'\n        }\n      ];\n      return suggestions.filter(suggestion =\u003e {\n        return suggestion.display.includes(value);\n      });\n    }\n  }\n});\n```\n\n## Credits\n\nForked from https://github.com/team-loxo/summernote-at-mention\n\n## License\n\nThe contents of this repository is licensed under [The MIT License.](https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruiluntran%2Fsummernote-handlebars-autocomplete","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruiluntran%2Fsummernote-handlebars-autocomplete","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruiluntran%2Fsummernote-handlebars-autocomplete/lists"}