The theme supports encryption of specific folders or specific paths, as well as global scope encryption.
Caution
Note that because of the limitation of vuepress, the content of the article is only hidden before being decrypted, and visitors can still get the content of the article from the source code (from js).
Please DO NOT USE this encryption function for any sensitive and confidential articles and files, please bear the consequences of it.
vuepress-theme-hope implements the comment feature with built-in [@vuepress/plugin-comment][comment].
Info
vuepress-theme-hope passes plugins.comment in theme options as plugin options to @vuepress/plugin-comment.
This document outlines page generation, Markdown processing, and Frontmatter configuration in a VuePress project.
The theme provides feed support via[@vuepress/plugin-feed][feed]. Install @vuepress/plugin-feed manually in your project to use this feature.
Info
vuepress-theme-hope passes plugins.feed from theme options directly to @vuepress/plugin-feed.
vuepress-theme-hope provides SEO enhancements via the built-in [@vuepress/plugin-seo][seo].
Info
Configure the plugin via the plugins.seo option in the theme options. To disable this feature, set plugins.seo to false.
The theme automatically aggregates all articles and renders an article list at the /article/ route.
Article Configuration
By default, all Markdown files are included in the article list.
- Exclude Articles: Set
article: falsein the page Frontmatter, or configure custom exclusion logic viaplugins.blog.filterin the theme options. - Sticky Articles: Set
sticky: truein the Frontmatter to pin an article to the top of the list.
Tips
To explicitly control the sorting order of sticky articles, assign a numeric value to sticky (e.g., sticky: 2). Higher values are prioritized.
Excerpts
Defining Excerpts
Use the `
The theme integrates @vuepress/plugin-blog for blog functionality. It is disabled by default. Set plugins.blog: true in the theme options to enable it.
We always welcome everyone to contribute! Here is a guide for you.