Files
pdfme/website/sidebars.js
Kyohei Fukuda 95e8de77a8 [codex] Add JSX playground and Monaco editors (#1487)
* 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
2026-05-07 18:04:45 +09:00

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;