Last active
February 22, 2022 23:36
-
-
Save dirumahrafif/90ad7c40b2a55309d5c0420936fc5ac9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- masukkan di tag head --> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/summernote-lite.min.css" rel="stylesheet"> | |
| <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/summernote-lite.min.js"></script> | |
| <style> | |
| .note-editable { | |
| background-color: #FFFFFF; | |
| } | |
| </style> | |
| <!-- masukkan sebelum tag body penutup --> | |
| <script> | |
| $('#summernote').summernote({ | |
| tabsize: 2, | |
| height: 200 | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment