1.2.28 • Published 6 months ago

vitepress-plugin-codeblocks-fold v1.2.28

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

vitepress-plugin-codeblocks-fold

npm

English | 简体中文

npm.io

Add collapse to vitepress codeblocks

Install

// npm 
npm i vitepress-plugin-codeblocks-fold
// yarn
yarn add vitepress-plugin-codeblocks-fold

Use

// .vitepress/theme/index.js
import DefaultTheme from 'vitepress/theme';
import { useData, useRoute } from 'vitepress';
import codeblocksFold from 'vitepress-plugin-codeblocks-fold'; // import method
import 'vitepress-plugin-codeblocks-fold/style/index.scss'; // import style

export default {
    ...DefaultTheme,
    enhanceApp(ctx) {
        DefaultTheme.enhanceApp(ctx);
        // ...
    },
    setup() {
        // get frontmatter and route
        const { frontmatter } = useData();
        const route = useRoute();
        // basic use
        codeblocksFold({ route, frontmatter }, true, 400);
    }
};

codeblocksFold() takes three parameters:

  • vitepressObj

    This is an object, there must be two values in the object: route and frontmatter

  • defaultAllFold

    Whether the codeblocks of all pages are set to the collapsed state by default,default true; Set to 'false' to not fold by default. can be ignored.

  • height

    The height of the codeblocks after being folded, default 400(unitpx). can be ignored.

Extended use

You can set frontmatter to a single .md file

---
cbf: [1,2,3]
---

The meaning of this array is:

  • When 'defaultAllFold' is set to 'true' (that is all pages are folded by default), the first、second and third code blocks of the current page are forcibly not folded
  • When 'defaultAllFold' is set to 'false' (that is all pages are not folded by default), the first、second and third code blocks of the current page are forcibly folded

cbf also has two parameters: true and false

  • true means that all code blocks on the current page are folded
  • false means that all code blocks on the current page are not folded

more vitepress plugins

You may be interested in these plugins: Click me to view more vitepress plugins

1.2.28

6 months ago

1.2.16

11 months ago

1.2.17

11 months ago

1.2.15

12 months ago

1.2.18

11 months ago

1.2.19

11 months ago

1.2.20

11 months ago

1.2.23

11 months ago

1.2.24

11 months ago

1.2.21

11 months ago

1.2.22

11 months ago

1.2.27

9 months ago

1.2.25

9 months ago

1.2.26

9 months ago

1.2.14

12 months ago

1.2.13

1 year ago

1.2.12

1 year ago

1.2.11

1 year ago

1.2.10

1 year ago

1.2.9

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.6

1 year ago

1.2.5

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.2.0

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.9

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.18

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.15

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago