mirror of
https://github.com/pdfme/pdfme.git
synced 2026-02-20 07:47:16 -05:00
* TMP * docs: Enhance template contribution guide with detailed steps and community encouragement
37 lines
692 B
JavaScript
37 lines
692 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: [
|
|
'converter',
|
|
'manipulator',
|
|
'optimizer',
|
|
],
|
|
},
|
|
'development-guide',
|
|
'template-contribution-guide',
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|