여러 줄의 HTML 및 MD로 정적 블로그 구축
2584 단어 discussreactopensourcewebdev
한 단계 더 나아가 '.md' 및 '.txt'로 끝나는 Markdown 링크와 'text/markdown' 콘텐츠 유형을 블로그 페이지로 변환하여 가벼운 정적 블로그 생성기로 만들었습니다.
작성자는 다음과 같이 모든 파일을 동일한 폴더에 넣을 수 있습니다.
index.html
your_essay_1.md
your_essay_2.md
your_pic_1.jpg
...
index.html
에 Markdown을 작성합니다.<!DOCTYPE html>
<html lang='en'>
<head>
<link rel="stylesheet" href="https://unpkg.com/nimblog/dist/production/nimblog.css">
<meta charset='UTF-8'>
<title>Nimblog</title>
</head>
<body>
# [Your Blog](/)
- [your essay 1](your_essay_1.md)
- [your essay 2](your_essay_2.md)
<script type='module' src='https://unpkg.com/nimblog/dist/production/nimblog.js'></script>
</body>
</html>
내 목표는 다음과 같은 자격을 갖추는 것입니다.
📌 GitHub Pages와 같은 정적 호스팅 플랫폼에서 호스팅되므로 Nimblog는 프런트엔드에서 작동합니다. (완료)
📌 사용자 정의 가능한 테마. (완료)
📌 확장.
Nimblog로 구축된 데모를 확인할 수 있습니다.
https://nimblog.vercel.app/
이 프로젝트에 대한 조언은 무엇입니까? 모든 피드백과 GitHub 별 ⭐️을 환영합니다. 😉
https://github.com/imchell/nimblog
Reference
이 문제에 관하여(여러 줄의 HTML 및 MD로 정적 블로그 구축), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/realchell/build-static-blog-with-several-lines-of-html-and-md-4h5o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)