mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-17 20:49:43 -04:00
30 lines
640 B
JavaScript
30 lines
640 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [
|
|
'getting-started',
|
|
'supported-features',
|
|
'tables',
|
|
'expression',
|
|
'headers-and-footers',
|
|
{
|
|
type: 'category',
|
|
collapsed: false,
|
|
label: 'Customization',
|
|
items: ['custom-fonts', 'custom-ui', 'custom-schemas'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
collapsed: true,
|
|
label: 'Tools(New)',
|
|
items: ['cli', 'converter', 'manipulator'],
|
|
},
|
|
'development-guide',
|
|
'migration-v6',
|
|
'template-contribution-guide',
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|