오픈소스 - ChoDragon9/posts GitHub Wiki
유틸리티
Codemirror
PDF to Text, Image to Text
- Google Drive에서 Google 문서로 보기하면 텍스트로 변환됨
runTypes
amCharts
c3
// subchart: {
// show: true
// },
zoom: {
enabled: true,
initialRange: [
new Date(labels[labels.length - 8]),
new Date(labels[labels.length - 1])
]
},
대용량 CSV 파일을 위한 CSV 파일 머지 도구
에디터: TinyMCE
IDE 세팅
- .editorconfig
- IDE의 코드 세팅을 동일하게 가져간다.
- charset, indent_style, indent_size, end_of_line 등의 옵션이 있다.
PDF 리더
// AS IS
import pdfjs, {
PDFDocumentProxy,
PDFPageProxy,
PDFPromise,
ViewportParameters
} from 'pdfjs-dist'
// TO BE
import { getDocument } from 'pdfjs-dist/lib/pdf'
import { PDFDocumentProxy, PDFPromise, PDFPageProxy } from 'pdfjs-dist'
- 폰트 미노출 현상
- 경로 로그:
Warning: Error during font loading: The CMap "baseUrl" parameter must be specified, ensure that the "cMapUrl" and "cMapPacked" API parameters are provided.
- 해결 방법: getDocument 옵션에
cMapUrl
, cMapPacked
추가
getDocument({
url: path,
cMapUrl: 'https://cdn.jsdelivr.net/npm/[email protected]/cmaps/',
cMapPacked: true
}).promise