mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-02 19:29:57 -04:00
* feat(playground): add jsx playground with monaco editors * fix(playground): harden jsx playground runtime * fix(playground): enable tsx highlighting in jsx editor * fix(playground): harden jsx worker evaluator
30 lines
647 B
JavaScript
30 lines
647 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', 'jsx', 'converter', 'manipulator'],
|
|
},
|
|
'development-guide',
|
|
'migration-v6',
|
|
'template-contribution-guide',
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|