diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 2492404..c6a8955 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -11,11 +11,7 @@ export default defineUserConfig({ title: "Docs Demo", description: "A docs demo for vuepress-theme-hope", }, - "/zh/": { - lang: "zh-CN", - title: "文档演示", - description: "vuepress-theme-hope 的文档演示", - }, + }, theme, diff --git a/docs/.vuepress/navbar/en.ts b/docs/.vuepress/navbar/en.ts index 49995db..1eb887e 100644 --- a/docs/.vuepress/navbar/en.ts +++ b/docs/.vuepress/navbar/en.ts @@ -1,31 +1,9 @@ import { navbar } from "vuepress-theme-hope"; export const enNavbar = navbar([ - "/", - "/portfolio", - "/demo/", { - text: "Guide", - icon: "lightbulb", - prefix: "/guide/", - children: [ - { - text: "Bar", - icon: "lightbulb", - prefix: "bar/", - children: ["baz", { text: "...", icon: "ellipsis", link: "#" }], - }, - { - text: "Foo", - icon: "lightbulb", - prefix: "foo/", - children: ["ray", { text: "...", icon: "ellipsis", link: "#" }], - }, - ], - }, - { - text: "V2 Docs", - icon: "book", - link: "https://theme-hope.vuejs.press/", - }, + text: "Docs", + link: "/DOCS/README.md" + } + ]); diff --git a/docs/.vuepress/sidebar/en.ts b/docs/.vuepress/sidebar/en.ts index 4861b1c..69258d7 100644 --- a/docs/.vuepress/sidebar/en.ts +++ b/docs/.vuepress/sidebar/en.ts @@ -3,24 +3,11 @@ import { sidebar } from "vuepress-theme-hope"; export const enSidebar = sidebar({ "/": [ "", - "portfolio", { - text: "Demo", + text: "DOCS", icon: "laptop-code", - prefix: "demo/", - link: "demo/", + prefix: "DOCS/", children: "structure", - }, - { - text: "Docs", - icon: "book", - prefix: "guide/", - children: "structure", - }, - { - text: "Slides", - icon: "person-chalkboard", - link: "https://plugin-md-enhance.vuejs.press/guide/content/revealjs/demo.html", - }, + } ], }); diff --git a/docs/.vuepress/sidebar/index.ts b/docs/.vuepress/sidebar/index.ts index e508968..850f6d6 100644 --- a/docs/.vuepress/sidebar/index.ts +++ b/docs/.vuepress/sidebar/index.ts @@ -1,2 +1 @@ export * from "./en.js"; -export * from "./zh.js"; diff --git a/docs/.vuepress/sidebar/zh.ts b/docs/.vuepress/sidebar/zh.ts deleted file mode 100644 index 810310d..0000000 --- a/docs/.vuepress/sidebar/zh.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { sidebar } from "vuepress-theme-hope"; - -export const zhSidebar = sidebar({ - "/zh/": [ - "", - "portfolio", - { - text: "案例", - icon: "laptop-code", - prefix: "demo/", - link: "demo/", - children: "structure", - }, - { - text: "文档", - icon: "book", - prefix: "guide/", - children: "structure", - }, - { - text: "幻灯片", - icon: "person-chalkboard", - link: "https://plugin-md-enhance.vuejs.press/zh/guide/content/revealjs/demo.html", - }, - ], -}); diff --git a/docs/.vuepress/theme.ts b/docs/.vuepress/theme.ts index 056af27..4df0b84 100644 --- a/docs/.vuepress/theme.ts +++ b/docs/.vuepress/theme.ts @@ -1,21 +1,20 @@ import { hopeTheme } from "vuepress-theme-hope"; - import { enNavbar, zhNavbar } from "./navbar/index.js"; import { enSidebar, zhSidebar } from "./sidebar/index.js"; export default hopeTheme({ - hostname: "https://vuepress-theme-hope-docs-demo.netlify.app", + hostname: "https://blog.hying.fun", author: { - name: "Mr.Hope", - url: "https://mister-hope.com", + name: "Hying", + url: "https://blog.hying.fun", }, iconAssets: "fontawesome-with-brands", logo: "https://theme-hope-assets.vuejs.press/logo.svg", - repo: "vuepress-theme-hope/vuepress-theme-hope", + repo: "https://github.com/lhy-a/lhy-a.github.io", docsDir: "src", @@ -36,25 +35,7 @@ export default hopeTheme({ }, }, - /** - * Chinese locale config - */ - "/zh/": { - // navbar - navbar: zhNavbar, - - // sidebar - sidebar: zhSidebar, - - footer: "默认页脚", - - displayFooter: true, - // page meta - metaLocales: { - editLink: "在 GitHub 上编辑此页", - }, - }, }, encrypt: { @@ -75,6 +56,10 @@ export default hopeTheme({ categoryId: "DIC_kwDOG_Pt2M4COD69", }, + searchPro: { + indexContent: true, + }, + components: { components: ["Badge", "VPCard"], }, diff --git a/docs/README.md b/docs/README.md index 25f90d5..954a1b1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,321 +1,7 @@ --- -home: true icon: home -title: Project home -heroImage: https://theme-hope-assets.vuejs.press/logo.svg -bgImage: https://theme-hope-assets.vuejs.press/bg/6-light.svg -bgImageDark: https://theme-hope-assets.vuejs.press/bg/6-dark.svg -bgImageStyle: - background-attachment: fixed -heroText: Project name -tagline: You can place the description of the project here. -actions: - - text: How to Use - icon: lightbulb - link: ./demo/ - type: primary - - - text: Docs - link: ./guide/ - -highlights: - - header: Easy to install - image: /assets/image/box.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/3-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/3-dark.svg - highlights: - - title: Run pnpm create vuepress-theme-hope hope-project to create a new project with this theme. - - title: Run pnpm create vuepress-theme-hope add . in your project root to create a new project with this theme. - - - header: Add things you want in markdown - description: We extended the standard commonMark specification and added tons of new features for you. - image: /assets/image/markdown.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/2-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/2-dark.svg - bgImageStyle: - background-repeat: repeat - background-size: initial - features: - - title: Links Check - icon: clipboard-check - details: Check markdown links - link: https://theme-hope.vuejs.press/guide/markdown/others.html#link-check - - - title: Hint box - icon: box-archive - details: Decorate Markdown content with styles - link: https://theme-hope.vuejs.press/guide/markdown/stylize/hint.html - - - title: GFM alerts - icon: bell - details: GFM alert box - link: https://theme-hope.vuejs.press/guide/markdown/stylize/alert.html - - - title: Tabs - icon: table-columns - details: Group similar content with tabs and switch them together - link: https://theme-hope.vuejs.press/guide/markdown/content/tabs.html - - - title: Code Tabs - icon: code - details: Group similar codes with tabs - link: https://theme-hope.vuejs.press/guide/markdown/code/code-tabs.html - - - title: Custom Align - icon: align-center - details: Let you decide to align paragraphs in the way you like - link: https://theme-hope.vuejs.press/guide/markdown/stylize/align.html - - - title: Attrs - icon: code - details: Allow you to add attributes for Markdown content - link: https://theme-hope.vuejs.press/guide/markdown/stylize/attrs.html - - - title: Superscript and subscript - icon: superscript - details: Inserting superscript and subscript - link: https://theme-hope.vuejs.press/guide/markdown/grammar/sup-sub.html - - - title: Footnote - icon: quote-left - details: Your Markdown now support footnotes - link: https://theme-hope.vuejs.press/guide/markdown/content/footnote.html - - - title: Mark - icon: highlighter - details: Mark and highlight contents - link: https://theme-hope.vuejs.press/guide/markdown/stylize/mark.html - - - title: Spoiler - icon: eraser - details: Mark spoiler contents - link: https://theme-hope.vuejs.press/guide/markdown/stylize/spoiler.html - - - title: Tasklist - icon: square-check - details: Use tasklist in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/grammar/tasklist.html - - - title: Image syntax - icon: image - details: improve syntax to specify size and color scheme - link: https://theme-hope.vuejs.press/guide/markdown/grammar/image.html - - - title: Component Support - icon: puzzle-piece - details: Easily insert components in Markdown - link: https://theme-hope.vuejs.press/guide/component/grammar.html - - - title: Components - icon: puzzle-piece - details: Common components out fo box - link: https://theme-hope.vuejs.press/guide/component/built-in.html - - - title: Chart Support - icon: chart-simple - details: Display charts in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/chart/chartjs.html - - - title: Flowchart Support - icon: route - details: Create your flowchart in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/chart/flowchart.html - - - title: Mermaid Support - icon: chart-pie - details: Add mermaid diagram in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/chart/mermaid.html - - - title: Plantuml Support - icon: diagram-project - details: Add plantuml in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/chart/plantuml.html - - - title: Tex Support - icon: square-root-variable - details: Markdown now have Tex Support so you can write your formula - link: https://theme-hope.vuejs.press/guide/markdown/grammar/tex.html - - - title: Include snippet Support - icon: fab fa-markdown - details: split your docs with different parts and import them in Markdown - link: https://theme-hope.vuejs.press/guide/markdown/content/include.html - - - title: Playground Support - icon: code - details: You can add playground in Markdown files - link: https://theme-hope.vuejs.press/guide/markdown/code/playground.html - - - title: Kotlin playground Support - icon: fab fa-kickstarter - details: Reactive kotlin playground - link: https://theme-hope.vuejs.press/guide/markdown/code/kotlin-playground.html - - - title: Vue playground Support - icon: fab fa-vuejs - details: Show living vue component in playground - link: https://theme-hope.vuejs.press/guide/markdown/code/vue-playground.html - - - title: Sandpack playground Support - icon: code - details: A live coding environment driven by Sandpack. - link: https://theme-hope.vuejs.press/guide/markdown/code/sandpack.html - - - title: Code Demo Support - icon: laptop-code - details: You can insert code demo easily - link: https://theme-hope.vuejs.press/guide/markdown/code/demo.html - - - title: Presentation Support - icon: person-chalkboard - details: Insert presentation in Markdown files via Reveal.js - link: https://theme-hope.vuejs.press/guide/markdown/content/revealjs.html - - - header: Customizable UI - description: Customizable outlook with full a11y support. - image: /assets/image/ui.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/9-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/9-dark.svg - highlights: - - title: Dark Mode - icon: circle-half-stroke - details: Switch between light and dark modes freely - link: https://theme-hope.vuejs.press/guide/interface/darkmode.html - - - title: Customizable Theme Color - icon: palette - details: Set theme color with the brand color and even a picker - link: https://theme-hope.vuejs.press/guide/interface/theme-color.html - - - title: More - icon: ellipsis - details: RTL layout, print support, fullscreen button, etc. - link: https://theme-hope.vuejs.press/guide/interface/others.html - - - header: Improved layouts - description: An awesome responsive layout - image: /assets/image/layout.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/5-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/5-dark.svg - highlights: - - title: Navbar - icon: window-maximize - details: Fully customizable navbar with improved mobile support - link: https://theme-hope.vuejs.press/guide/layout/navbar.html - - - title: Sidebar - icon: fas fa-window-maximize fa-rotate-270 - details: Generate sidebar based on page headings and file structure - link: https://theme-hope.vuejs.press/guide/layout/sidebar.html - - - title: Slide Page - icon: person-chalkboard - details: Adding slide pages to display things you like - link: https://theme-hope.vuejs.press/guide/layout/slides.html - - - title: Other Layout Improvement - icon: object-group - details: Improved page nav and new breadcrumb, footer and toc. We also bring you a brand new homepage. - link: https://theme-hope.vuejs.press/guide/layout/ - - - header: New features - image: /assets/image/features.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/1-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/1-dark.svg - features: - - title: Catalog Page - icon: network-wired - details: Auto generating catalog page and out of box catalog component - link: https://theme-hope.vuejs.press/guide/feature/catalog.html - - - title: Pageviews and Comments - icon: comment-dots - details: Pageview statistics and comment support with 4 comment service - link: https://theme-hope.vuejs.press/guide/feature/comment.html - - - title: Article Information - icon: circle-info - details: Add author, writing date, reading time, word count and other information to your article - link: https://theme-hope.vuejs.press/guide/feature/page-info.html - - - title: Article Encryption - icon: lock - details: Encrypt you articles based on page links, so that only the one you want could see them - link: https://theme-hope.vuejs.press/guide/feature/encrypt.html - - - title: Search - icon: search - details: Support docsearch and client search - link: https://theme-hope.vuejs.press/guide/feature/search.html - - - title: Code Block - icon: code - details: Customize code block themes, line number, highlight lines, copy button, etc. - link: https://theme-hope.vuejs.press/guide/feature/code-block.html - - - title: Image Preview - icon: image - details: Support viewing, zooming, sharing your page images like a gallery - link: https://theme-hope.vuejs.press/guide/feature/photo-swipe.html - - - header: Blogging - description: Create personal blog with theme - image: /assets/image/blog.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/5-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/5-dark.svg - highlights: - - title: Blog features - icon: blog - details: Listing your articles with their dates, tags and categories - link: https://theme-hope.vuejs.press/guide/blog/intro.html - - - title: Blog homepage - icon: blog - details: New blog homepage - link: https://theme-hope.vuejs.press/guide/blog/home.html - - - title: Blogger info - icon: circle-info - details: Customize avatar, name, slogan, introduction and social links - link: https://theme-hope.vuejs.press/guide/blog/blogger.html - - - title: Timeline - icon: clock - details: Read through blog posts in a timeline - link: https://theme-hope.vuejs.press/guide/blog/timeline.html - - - header: Advanced - description: Advanced features to improve site SEO and user experience - image: /assets/image/advanced.svg - bgImage: https://theme-hope-assets.vuejs.press/bg/4-light.svg - bgImageDark: https://theme-hope-assets.vuejs.press/bg/4-dark.svg - highlights: - - title: SEO Enhancement - icon: dumbbell - details: Optimize pages for search engines - link: https://theme-hope.vuejs.press/guide/advanced/seo.html - - - title: Sitemap - icon: sitemap - details: Generate a Sitemap for your site - link: https://theme-hope.vuejs.press/guide/advanced/sitemap.html - - - title: Feed - icon: rss - details: Generate feed to allow users to subscribe it - link: https://theme-hope.vuejs.press/guide/advanced/feed.html - - - title: PWA - icon: mobile-screen - details: Make your site more like an APP - link: https://theme-hope.vuejs.press/guide/advanced/pwa.html - -copyright: false -footer: Theme by VuePress Theme Hope | MIT Licensed, Copyright © 2019-present Mr.Hope +index: false +title: HOME --- -This is an example of a project homepage. You can place your main content here. - -To use this layout, you need to set `home: true` in the page front matter. - -For related descriptions of configuration items, please see [Project HomePage Layout Config](https://theme-hope.vuejs.press/guide/layout/home/). + \ No newline at end of file diff --git a/docs/demo/README.md b/docs/demo/README.md deleted file mode 100644 index b3a849d..0000000 --- a/docs/demo/README.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Features demo -index: false -icon: laptop-code -category: - - Guide ---- - - diff --git a/docs/demo/disable.md b/docs/demo/disable.md deleted file mode 100644 index 8ecea1a..0000000 --- a/docs/demo/disable.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Disabling layout and features -icon: gears -order: 4 -category: - - Guide -tag: - - disable - -navbar: false -sidebar: false - -breadcrumb: false -pageInfo: false -contributors: false -editLink: false -lastUpdated: false -prev: false -next: false -comment: false -footer: false - -backtotop: false ---- - -You can disable some function and layout on the page by setting the Frontmatter of the page. - - - -This page is an demo that disables the following features: - -- Navbar -- Sidebar -- Breadcrumb -- Page information -- Contributors -- Edit link -- Update time -- Prev/Next link -- Comment -- Footer -- Back to top button diff --git a/docs/demo/encrypt.md b/docs/demo/encrypt.md deleted file mode 100644 index 6516117..0000000 --- a/docs/demo/encrypt.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -icon: lock -category: - - Guide -tag: - - encryption ---- - -# Encryption Article - -The actual article content. - -Paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text paragraph 1 text. - -Paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text paragraph 2 text. diff --git a/docs/demo/layout.md b/docs/demo/layout.md deleted file mode 100644 index 9835322..0000000 --- a/docs/demo/layout.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: Layout -icon: object-group -order: 2 -category: - - Guide -tag: - - Layout ---- - -The layout contains: - -- [Navbar](https://theme-hope.vuejs.press/guide/layout/navbar.html) -- [Sidebar](https://theme-hope.vuejs.press/guide/layout/sidebar.html) -- [Footer](https://theme-hope.vuejs.press/guide/layout/footer.html) - -Also each page can contain: - -- [BreadCrumb](https://theme-hope.vuejs.press/guide/layout/breadcrumb.html) -- [Title and information](https://theme-hope.vuejs.press/guide/feature/page-info.html) -- [TOC (Table of Contents)](https://theme-hope.vuejs.press/guide/layout/page.html#header-list) -- [Meta information including update time and contributors](https://theme-hope.vuejs.press/guide/feature/meta.html) -- [Comments](https://theme-hope.vuejs.press/guide/feature/comment.html) - -The theme also has the following elements: - -- [Darkmode button](https://theme-hope.vuejs.press/guide/interface/darkmode.html) -- [Back to top button](https://theme-hope.vuejs.press/guide/interface/others.html#back-to-top-button) -- [Print button](https://theme-hope.vuejs.press/guide/interface/others.html#print-button) - -You can customize them in theme options and page frontmatter. diff --git a/docs/demo/markdown.md b/docs/demo/markdown.md deleted file mode 100644 index 64e7b1a..0000000 --- a/docs/demo/markdown.md +++ /dev/null @@ -1,325 +0,0 @@ ---- -title: Markdown Enhance -icon: fab fa-markdown -order: 2 -category: - - Guide -tag: - - Markdown ---- - -VuePress basically generate pages from Markdown files. So you can use it to generate documentation or blog sites easily. - -You should create and write Markdown files, so that VuePress can convert them to different pages according to file structure. - - - -## Markdown Introduction - -If you are a new learner and don't know how to write Markdown, please read [Markdown Intro](https://theme-hope.vuejs.press/cookbook/markdown/) and [Markdown Demo](https://theme-hope.vuejs.press/cookbook/markdown/demo.html). - -## Markdown Config - -VuePress introduce configuration for each markdown page using Frontmatter. - -::: important Frontmatter - -Frontmatter is an important concept in VuePress. If you don't know it, you need to read [Frontmatter Introduction](https://theme-hope.vuejs.press/cookbook/vuepress/page.html#front-matter). - -::: - -## Markdown Extension - -The Markdown content in VuePress will be parsed by [markdown-it](https://github.com/markdown-it/markdown-it), which supports [syntax extensions](https://github.com/markdown-it/markdown-it#syntax-extensions) via markdown-it plugins. - -### VuePress Enhancement - -To enrich document writing, VuePress has extended Markdown syntax. - -For these extensions, please read [Markdown extensions in VuePress](https://theme-hope.vuejs.press/basic/vuepress/markdown.html). - -### Theme Enhancement - -By using [`vuepress-plugin-md-enhance`][md-enhance], the theme extends more Markdown syntax and provides richer writing functions. - -#### Code Tabs - -::: code-tabs#shell - -@tab pnpm - -```bash -pnpm add -D vuepress-theme-hope -``` - -@tab yarn - -```bash -yarn add -D vuepress-theme-hope -``` - -@tab:active npm - -```bash -npm i -D vuepress-theme-hope -``` - -::: - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/code/code-tabs.html) - -#### Tabs - -::: tabs#fruit - -@tab apple - -Apple - -@tab banana - -Banana - -@tab orange - -Orange - -::: - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/content/tabs.html) - -#### Footnote - -This text has footnote[^first]. - -[^first]: This is footnote content - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/content/footnote.html) - -#### Include files - - - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/content/include.html) - -#### TeX - -$$ -\frac {\partial^r} {\partial \omega^r} \left(\frac {y^{\omega}} {\omega}\right) -= \left(\frac {y^{\omega}} {\omega}\right) \left\{(\log y)^r + \sum_{i=1}^r \frac {(-1)^i r \cdots (r-i+1) (\log y)^{r-i}} {\omega^i} \right\} -$$ - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/grammar/tex.html) - -#### Tasklist - -- [x] Plan A -- [ ] Plan B - -[View Detail](https://theme-hope.vuejs.press/guide/markdown/grammar/tasklist.html) - -#### Image Enhancement - -Support setting color scheme and size. - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/grammar/image.html) - -#### Superscript and Subscript - -19^th^ H~2~O - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/grammar/sup-sub.html) - -#### Component - -```component VPCard -title: Mr.Hope -desc: Where there is light, there is hope -logo: https://mister-hope.com/logo.svg -link: https://mister-hope.com -background: rgba(253, 230, 138, 0.15) -``` - -- [View Detail](https://theme-hope.vuejs.press/guide/component/grammar.html) - -#### Hint box and GFM alerts - -::: v-pre - -Safely use {{ variable }} in Markdown. - -::: - -::: info Custom Title - -A custom information container with `code`, [link](#markdown-extension). - -```js -const a = 1; -``` - -::: - -::: tip Custom Title - -A custom tip container - -::: - -::: warning Custom Title - -A custom warning container - -::: - -::: caution Custom Title - -A custom caution container - -::: - -::: details Custom Title - -A custom details container - -::: - -- [GitHub Alert](https://theme-hope.vuejs.press/guide/markdown/stylize/alert.html) -- [Hint boxes](https://theme-hope.vuejs.press/guide/markdown/stylize/hint.html) - -#### Align - -::: center - -I am center - -::: - -::: right - -I am right align - -::: - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/stylize/align.html) - -#### Attrs - -A **word**{#word} having id. - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/stylize/attrs.html) - -#### Mark - -You can mark ==important words== . - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/stylize/mark.html) - -#### Spoiler - -VuePress Theme Hope is !!powerful!!. - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/stylize/spoiler.html) - -#### Stylize - -Donate Mr.Hope a cup of coffee. _Recommended_ - -- [View Detail](https://theme-hope.vuejs.press/guide/markdown/stylize/stylize.html) - -#### Reveal.js - -