首页 > 其他分享 >超好用的写博客工具VuePress

超好用的写博客工具VuePress

时间:2023-04-29 18:33:09浏览次数:45  
标签:学习 title text 博客 超好 link VuePress path

VuePress简介

VuePress 由两部分组成:第一部分是一个极简静态网站生成器,它包含由 Vue 驱动的主题系统和插件 API,另一个部分是为书写技术文档而优化的默认主题,它的诞生初衷是为了支持 Vue 及其子项目的文档需求。

每一个由 VuePress 生成的页面都带有预渲染好的 HTML,也因此具有非常好的加载性能和搜索引擎优化(SEO)。同时,一旦页面被加载,Vue 将接管这些静态内容,并将其转换成一个完整的单页应用(SPA),其他的页面则会只在用户浏览到的时候才按需加载。

快速搭建一个环境

  1. 创建并进入一个新目录
mkdir study && cd study
  1. 初始化
npm init
  1. 安装本地依赖VuePress
npm install -D vuepress
  1. 创建你的第一篇文档
mkdir docs && echo '# Hello VuePress' > docs/README.md
  1. 设置package.json
{
  "scripts": {
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs"
  }
}
  1. 启动
npm run docs:dev

VuePress 会在 http://localhost:8080启动一个热重载的开发服务器

基础配置

如果没有任何配置,这个网站将会是非常局限的,用户也无法在你的网站上自由导航。为了更好地自定义你的网站,让我们首先在你的文档目录下创建一个 .vuepress 目录,所有 VuePress 相关的文件都将会被放在这里。你的项目结构可能是这样:

.
├─ docs
│  ├─ README.md
│  └─ .vuepress
│     └─ config.js
└─ package.json

一个 VuePress 网站必要的配置文件是 .vuepress/config.js,它应该导出一个 JavaScript 对象:

module.exports = {
  title: 'Study',
  description: '学习使用VuePress'
}

此时界面类似于:

导航栏设置

修改 config.js:

module.exports = {
    title: 'Study',
    description: '学习使用VuePress',
    themeConfig: {
        nav: [
            { text: '首页', link: '/' },
            { 
                text: '无涯子博客', 
                items: [
                    { text: 'Github', link: 'https://github.com/wyz210052253/' },
                    { text: '博客园', link: 'https://www.cnblogs.com/wyzstudy/' }
                ]
            }
        ]
    }
}

添加侧边栏

现在我们添加一些 md 文档,目前文档的目录如下:

.
├─ docs
│  ├─ README.md
│  └─ .vuepress
│     └─ config.js
|  └─ blogs
|  	  └─ Dubbo学习总结.md
|	  └─ Zookeeper深入学习.md
└─ package.json

config.js 配置如下:

module.exports = {
    title: 'Study',
    description: '学习使用VuePress',
    themeConfig: {
        nav: [
            { text: '首页', link: '/' },
            { 
                text: '无涯子博客', 
                items: [
                    { text: 'Github', link: 'https://github.com/wyz210052253/' },
                    { text: '博客园', link: 'https://www.cnblogs.com/wyzstudy/' }
                ]
            }
        ],
        sidebar: [
            {
                title: '首页',
                path: '/',
                collapsable: false,
                children: [
                    { title: "学习前提", path: "/" }
                ]
            },
            {
                title: '技术文章',
                path: '/blogs/Dubbo学习总结',
                collapsable: false,
                children: [
                    { title: "Dubbo学习总结", path: "/blogs/Dubbo学习总结" },
                    { title: "Zookeeper深入学习", path: "/blogs/Zookeeper深入学习" }
                ],

            }
        ]
    }
}

安装主题

现在基本的目录和导航功能已经实现,但如果我还想要加载 loading、切换动画、模式切换(暗黑模式)、返回顶部、评论等功能呢,为了简化开发成本,我们可以直接使用主题,这里使用的主题是 vuepress-theme-rec

npm install vuepress-theme-reco --save-dev

config.js 里引用该主题:

module.exports = {
    title: 'Study',
    description: '学习使用VuePress',
    theme: 'reco',
    themeConfig: {
        nav: [
            { text: '首页', link: '/' },
            { 
                text: '无涯子博客', 
                items: [
                    { text: 'Github', link: 'https://github.com/wyz210052253/' },
                    { text: '博客园', link: 'https://www.cnblogs.com/wyzstudy/' }
                ]
            }
        ],
        sidebar: [
            {
                title: '首页',
                path: '/',
                collapsable: false,
                children: [
                    { title: "学习前提", path: "/" }
                ]
            },
            {
                title: '技术文章',
                path: '/blogs/Dubbo学习总结',
                collapsable: false,
                children: [
                    { title: "Dubbo学习总结", path: "/blogs/Dubbo学习总结" },
                    { title: "Zookeeper深入学习", path: "/blogs/Zookeeper深入学习" }
                ],

            }
        ]
    }
}

文章信息

---
title: Dubbo学习总结
author: 无涯子
date: '2023-04-27'
---

设置语言

module.exports = {
    title: 'Study',
    description: '学习使用VuePress',
    theme: 'reco',
    locales: {
        '/': {
          lang: 'zh-CN'
        }
    },
    themeConfig: {
        nav: [
            { text: '首页', link: '/' },
            { 
                text: '无涯子博客', 
                items: [
                    { text: 'Github', link: 'https://github.com/wyz210052253/' },
                    { text: '博客园', link: 'https://www.cnblogs.com/wyzstudy/' }
                ]
            }
        ],
        sidebar: [
            {
                title: '首页',
                path: '/',
                collapsable: false,
                children: [
                    { title: "学习前提", path: "/" }
                ]
            },
            {
                title: '技术文章',
                path: '/blogs/Dubbo学习总结',
                collapsable: false,
                children: [
                    { title: "Dubbo学习总结", path: "/blogs/Dubbo学习总结" },
                    { title: "Zookeeper深入学习", path: "/blogs/Zookeeper深入学习" }
                ],

            }
        ]
    }
}


开启目录结构

module.exports = {
    title: 'Study',
    description: '学习使用VuePress',
    theme: 'reco',
    locales: {
        '/': {
          lang: 'zh-CN'
        }
    },
    themeConfig: {
        nav: [
            { text: '首页', link: '/' },
            { 
                text: '无涯子博客', 
                items: [
                    { text: 'Github', link: 'https://github.com/wyz210052253/' },
                    { text: '博客园', link: 'https://www.cnblogs.com/wyzstudy/' }
                ]
            }
        ],
        sidebar: [
            {
                title: '首页',
                path: '/',
                collapsable: false,
                children: [
                    { title: "学习前提", path: "/" }
                ]
            },
            {
                title: '技术文章',
                path: '/blogs/Dubbo学习总结',
                collapsable: false,
                children: [
                    { title: "Dubbo学习总结", path: "/blogs/Dubbo学习总结" },
                    { title: "Zookeeper深入学习", path: "/blogs/Zookeeper深入学习" }
                ],

            }
        ],
        subSidebar: 'auto'
    }
}

自定义修改样式

.dark .content__default code {
    background-color: rgba(58,58,92,0.7);
    color: #fff;
}

部署Github

部署到免费的 Github Pages 上。我们在 Github 上新建一个仓库,这里我取得仓库名为:Study

在根目录下建立一个脚本文件:deploy.sh

#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e

# 生成静态文件
npm run docs:build

# 进入生成的文件夹
cd docs/.vuepress/dist

git init
git add -A
git commit -m 'deploy Github'

# 如果发布到 https://<USERNAME>.github.io/<REPO>
git push -f [email protected]:wyz210052253/Study.git master:pages

cd -

执行脚本:

sh deploy.sh


通过Github访问



在线地址:https://wyz210052253.github.io/Study/

标签:学习,title,text,博客,超好,link,VuePress,path
From: https://www.cnblogs.com/wyzstudy/p/17364338.html

相关文章

  • vuepress 静态博客搭建
    基于npminitvuepress-theme-hopevuepressvuepress是工程目录vuepress/src是博客目录新增博客cdvuepressnpminitvuepress-theme-hopeaddmyblog1就会在vuepress/src的同级目录下创建一个myblog1目录。参考https://theme-hope.vuejs.press/zh/cookbook/t......
  • oo第二次博客总结
      目录1.前言2.设计与分析3.踩坑心得4.改进建议5.总结一:前言题目集四:1,菜单计价程序-32,有重复的数据3,去掉重复的数据4.单词的统计与排序5.面向对象编程(封装性)6.GPS测绘中度分秒转换7.判断两个日期的先后,计算间隔天数、周数.题目集五:1.正则表达式训练-QQ号校......
  • 博客园中如何使用HTML所见即可得编辑器TinyMCE
    大纲基本内容:文本、段落规范结构:标题、大纲大量数据:表格、列表内外跳转:链接、锚点视觉媒体:图像、视频、音乐用户交流:表单、交互文本字体、大小、前景色、背景色、加粗、倾斜、下划线、中划线、清楚格式段落段落行间距、段落字间距、段落居中对其、段落居左对齐、......
  • 安卓QQ浏览器打开新浪博客
    Update以上问题已经不是问题了,因为况哥不用新浪博客了。况哥登录新浪博客时,提示账户异常,以前的博客无法查看,更别说修改了。为了避免即使可能恢复正常后再次出现这种问题,况哥决定直接弃用。 ......
  • 新一代博客平台,让你的创作和管理体验焕然一新!
    安利一个用来记录自己学习的平台。随着互联网的发展,博客已经成为了许多人展示自己、分享经验和交流想法的重要平台。而{数字空间WRITE-BUG}作为新一代博客平台,将为你带来全新的创作和管理体验。首先,数字空间WRITE-BUG拥有颜值最高的设计。我们注重用户体验,从页面布局到配色搭配,都力......
  • 博客主题美化+博客主站
    博客主题美化参考博客1、参考2想加但是不会加的模块我的页脚代码<!--https://cdn.jsdelivr.net/npm/[email protected]/lib/sakana.min.css--><!--https://cdn.jsdelivr.net/npm/[email protected]/lib/sakana.min.js--><!--https://cdnjs.cloudflare.com/ajax/lib......
  • Hexo + github 打造个人博客
    前两年开始用wordpress搭了一个网站,但服务器是在Linode上,之所以要放在Linode上,要从买的域名说起,因为我买的域名是fengzheng.pub,.pub是不允许备案的,所以不能解析到国内的服务器,例如阿里云上,所以只能部署在国外的服务器。但是由于网络方面的限制,导致网站访问速度一直不是很......
  • 博客图片无法显示问题恢复
    最近忙昏头了,好久没看博客,今天打开一看,好嘛,图片怎么都不显示了???修复一下问题之前采用的都是csdn的免费编辑器,好用方便还有图床都不用直接弄,做完直接cv到各处都能用;这次原因是自己只弄了个免费图床存重要的头像和头图,然鹅那个图床更新了图片的链接,So,把更新的链接改到博客园后台......
  • 博客园的使用体验,吐槽那些不好用的功能
    首先给我的感觉是首页没有查找博主的功能,比如说我想看大佬杨中科的博客,那么我在首页搜索”杨中科“会出现什么?如下图 结果却是这样的。。。。。这是什么啊 而我想要的是杨中科的首页  或者说你给我一个列表页,列表内展示的所有名字里面包含“杨中科”是三个字的所有博......
  • 博客园自定义皮肤设置2
    博客园自定义皮肤设置-21.选择皮肤LessIsMore2.博客侧边栏公告<style>#back-top{position:fixed;bottom:10px;right:5px;z-index:99;}#back-topspan{width:50px;height:64px;display:block;background:url(htt......