Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- resource
- GIT
- lsof
- import
- profile
- IntelliJ
- 단축키
- context
- find
- Source
- port
- netsh
- JavaScript
- tomcat
- 네트워크
- Mac
- Windows 10
- ssh
- grep
- bash
- Eclipse
- vscode
- Quartz
- web.xml
- Windows
- VirtualBox
- xargs
- plugin
- maVen
- 줄바꿈 문자
Archives
- Today
- Total
develog
[summernote] 일반 설정 본문
적용 내용
- 툴바 아이콘 배치 변경
- 한글 웹폰트 적용
- 폰트 리스트 변경
full source
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SummernoteTest</title>
<!-- include libraries(jQuery, bootstrap) -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- include summernote css/js -->
<link href="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/summernote.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/summernote.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/lang/summernote-ko-KR.js"></script>
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/lang/summernote-en-US.js"></script>
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/lang/summernote-zh-CN.js"></script>
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.20/dist/lang/summernote-vi-VN.js"></script>
<style>
@font-face {
font-family: 'NotoSansKR';
src: url('font/NotoSansKR-Black.otf') format('opentype')
}
</style>
<script>
$(document).ready(function() {
var fontList = ['맑은 고딕','굴림','돋움','바탕','궁서','NotoSansKR','Arial','Courier New','Verdana','Tahoma','Times New Roamn'];
$('#summernote').summernote({
//lang: 'ko-KR',
//lang: 'en-US',
lang: 'zh-CN',
height: 100,
fontNames: fontList,
fontNamesIgnoreCheck: fontList,
fontSizes: ['8','9','10','11','12','14','18','24','36'],
toolbar: [
['font', ['fontname','fontsize','fontsizeunit']],
['fontstyle', ['bold','italic','underline','strikethrough','forecolor','backcolor','superscript','subscript','clear']],
['style', ['style']],
['paragraph', ['paragraph','height','ul','ol']],
['insert', ['table','hr','link','picture','video']],
['codeview'],
],
});
// $('#summernote').summernote('fontName', '맑은 고딕');
// $('#summernote').summernote('fontSize', 11);
// $('#summernote').summernote('fontSizeUnit', 'pt');
});
</script>
</head>
<body>
<div id="summernote">Summernote 테스트</div>
</body>
</html>
i18n
https://cdnjs.com/libraries/summernote/0.8.20
https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/lang/summernote-ko-KR.min.js
https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/lang/summernote-en-US.min.js
https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/lang/summernote-zh-CN.min.js
https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.20/lang/summernote-vi-VN.min.js
Comments