주소데이터 활용 예시 가이드 문서입니다.
npm install
npm run docs:dev
npm run docs:build # deploy
- vitepress markdown 설명서에 접속하면 상세한 사용방법을 확인할 수 있습니다.
사용하는 이미지는 contents/img
폴더에 이미지를 저장합니다.
사용 예시는 아래와 같습니다.
<figure class="flex flex-col items-center justify-center">
<img src="../img/example.png" title="juso.go.kr guide">
</figure>
.vitepress
폴더의config.js
에서 목차를 생성합니다.config.js
의 가장 하단에 있는sidebarMain()
에서 아래와 같이 추가합니다.
function sidebarMain() {
return [
{
text: "Introduction",
collapsible: true,
items: [
{ text: "0. 추천 학습 가이드", link: "/nlp/0-introduction.html" },
],
},
{
text: "자연어처리 기초 개념",
collapsible: true,
items: [
{ text: "1-1. 자연어처리란?", link: "/nlp/1-1-what-is-nlp.html" },
{
text: "1-2. 한국어 자연어처리가 어려운 이유",
link: "/nlp/1-2-nlp-for-korean.html",
},
{
text: "1-3. 텍스트 데이터 수집하기",
link: "/nlp/1-3-get-text-data.html",
},
],
},
];
}
-
timeline.js
-
Chapter 1 - 1. 주소란 무엇인가
에서 사용 -
터미널에
npm i @knight-lab/timelinejs
입력하여 다운로드 -
사용법
- 스프레드 시트에 추가 정보 작성 후 저장 (시트 내용, 파일명 등 변경 사항 있을 때마다 새 링크로 받아야 함.)
- 저장한 다음 상단
파일 > 공유 > 웹에 게시
클릭 - 웹 게시 후, 주소 창의 주소 복사 (웹 게시 팝업에 나오는 주소 X)
docs > .vitepress > theme > components
폴더의timeLine.vue
파일에서 스프레드 시트 링크 부분 수정- 커널 종료했다가 재실행
- Public 상태라면, giscus 추가 가능
- 2024년 3월 20일 추가완료 (필요없다면 추후 삭제)
- 추가
- 2024년 5월 7일 자동 build 기능 추가