{"id":44525011,"url":"https://github.com/scompiler/summernote","last_synced_at":"2026-02-13T17:57:58.946Z","repository":{"id":60875484,"uuid":"522495027","full_name":"scompiler/summernote","owner":"scompiler","description":"Super simple WYSIWYG editor","archived":false,"fork":false,"pushed_at":"2023-10-06T15:37:33.000Z","size":16345,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"teaks","last_synced_at":"2025-11-23T14:08:00.728Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://summernote.org","language":"TypeScript","has_issues":false,"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/scompiler.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"open_collective":"summernote"}},"created_at":"2022-08-08T10:03:14.000Z","updated_at":"2023-03-06T11:47:44.000Z","dependencies_parsed_at":"2023-01-19T21:34:34.171Z","dependency_job_id":null,"html_url":"https://github.com/scompiler/summernote","commit_stats":{"total_commits":2657,"total_committers":361,"mean_commits":7.360110803324099,"dds":0.584493789988709,"last_synced_commit":"067b5e5cbc212d9936066a7d3621e2959467fcf8"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/scompiler/summernote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scompiler%2Fsummernote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scompiler%2Fsummernote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scompiler%2Fsummernote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scompiler%2Fsummernote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scompiler","download_url":"https://codeload.github.com/scompiler/summernote/tar.gz/refs/heads/teaks","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scompiler%2Fsummernote/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29414277,"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":[],"created_at":"2026-02-13T17:57:58.750Z","updated_at":"2026-02-13T17:57:58.941Z","avatar_url":"https://github.com/scompiler.png","language":"TypeScript","funding_links":["https://opencollective.com/summernote"],"categories":[],"sub_categories":[],"readme":"# Summernote\n\nSuper simple WYSIWYG Editor.\n\n[![Build Status](https://travis-ci.org/summernote/summernote.svg?branch=develop)](http://travis-ci.org/summernote/summernote)\n[![npm version](https://badge.fury.io/js/summernote.svg)](http://badge.fury.io/js/summernote)\n[![Coverage Status](https://coveralls.io/repos/summernote/summernote/badge.svg?branch=develop\u0026service=github)](https://coveralls.io/github/summernote/summernote?branch=develop)\n\n### Summernote\nSummernote is a JavaScript library that helps you create WYSIWYG editors online.\n\nHome page: \u003chttps://summernote.org\u003e\n\n### Why Summernote?\n\nSummernote has a few special features:\n\n* Paste images from clipboard\n* Saves images directly in the content of the field using base64 encoding, so you don't need to implement image handling at all\n* Simple UI\n* Interactive WYSIWYG editing\n* Handy integration with server\n* Supports Bootstrap 3, 4 and 5 integrations\n* Lots of [plugins and connectors](https://github.com/summernote/awesome-summernote) provided together\n\n### Installation and dependencies\n\nSummernote is built on [jQuery](http://jquery.com/).\n\n#### 1. Include JS/CSS\n\nInclude the following code in the `\u003chead\u003e` tag of your HTML:\n\n```html\n\u003c!-- include libraries(jQuery, bootstrap) --\u003e\n\u003cscript type=\"text/javascript\" src=\"//code.jquery.com/jquery-3.6.0.min.js\"\u003e\u003c/script\u003e\n\u003clink rel=\"stylesheet\" href=\"//cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css\" /\u003e\n\u003cscript type=\"text/javascript\" src=\"cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js\"\u003e\u003c/script\u003e\n\n\u003c!-- include summernote css/js--\u003e\n\u003clink href=\"summernote-bs5.css\" rel=\"stylesheet\"\u003e\n\u003cscript src=\"summernote-bs5.js\"\u003e\u003c/script\u003e\n```\n\n#### 2. Target a element\n\nThen place a `div` tag somewhere in the `body` tag. This element will be replaced with the summernote editor.\n\n```html\n\u003cdiv id=\"summernote\"\u003eHello Summernote\u003c/div\u003e\n```\n\n#### 3. Summernote it!\n\nFinally, run this script after the DOM is ready:\n\n```javascript\n$(document).ready(function() {\n  $('#summernote').summernote();\n});\n```\n\nFor more examples, please visit to [homepage](http://summernote.org/examples).\n\n### API\n\n`code` - get the HTML source code underlying the text in the editor:\n\n```javascript\nvar html = $('#summernote').summernote('code');\n```\n\nFor more detail about API, please refer to [document](http://summernote.org/getting-started/#basic-api).\n\n#### Warning - code injection\n\nThe code view allows the user to enter script contents. Make sure to filter/[sanitize the HTML on the server](https://github.com/search?l=JavaScript\u0026q=sanitize+html). Otherwise, an attacker can inject arbitrary JavaScript code into clients.\n\n### For contributing\nhttps://github.com/summernote/summernote/blob/develop/.github/CONTRIBUTING.md\n\n### Contacts\n* Facebook user group: https://www.facebook.com/groups/summernote\n* Summernote Slack: [Join the Summernote Slack community](https://communityinviter.com/apps/summernote/summernote)\n\n## Testing powered by\n\u003ca target=\"_blank\" href=\"https://www.browserstack.com/\"\u003e\u003cimg width=\"200\" src=\"https://www.browserstack.com/images/layout/browserstack-logo-600x315.png\"\u003e\u003c/a\u003e\u003cbr\u003e\n[BrowserStack Open-Source Program](https://www.browserstack.com/open-source)\n\n\n### License\nSummernote may be freely distributed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscompiler%2Fsummernote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscompiler%2Fsummernote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscompiler%2Fsummernote/lists"}