summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-hints/index.js
blob: c76223264ca3d83e87f97758c40c7e7539393ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

module.exports = {
    blocks: {
        hint: ({ kwargs, children }) => {
            return {
                children,
                style: kwargs.style || 'info',
                icon:  kwargs.icon
            };
        }
    }
};