@@ -168,53 +168,19 @@ const config: Config = {
168168
169169 plugins : [
170170 [
171- 'docusaurus-plugin-llms' ,
171+ '@signalwire/ docusaurus-plugin-llms-txt ' ,
172172 {
173- // Options here
174- generateLLMsTxt : true ,
175- generateLLMsFullTxt : true ,
176- docsDir : 'docs' ,
177- ignoreFiles : [ 'advanced/*' , 'private/*' ] ,
178- title : 'psake Documentation' ,
179- description : 'Complete reference documentation for psake' ,
180- includeBlog : true ,
181- // Content cleaning options
182- excludeImports : true ,
183- removeDuplicateHeadings : true ,
184- // Control documentation order
185- //includeOrder: [
186- // 'getting-started/*',
187- // 'guides/*',
188- // 'api/*',
189- //],
190- includeUnmatchedLast : true ,
191- // Path transformation options
192- pathTransformation : {
193- // Paths to ignore when constructing URLs (will be removed if found)
194- ignorePaths : [ 'docs' ] ,
195- // Paths to add when constructing URLs (will be prepended if not already present)
196- addPaths : [ 'api' ] ,
197- } ,
198- // Custom LLM files for specific documentation sections
199- // customLLMFiles: [
200- // {
201- // filename: 'llms-python.txt',
202- // includePatterns: ['api/python/**/*.md', 'guides/python/*.md'],
203- // fullContent: true,
204- // title: 'Python API Documentation',
205- // description: 'Complete reference for Python API'
206- // },
207- // {
208- // filename: 'llms-tutorials.txt',
209- // includePatterns: ['tutorials/**/*.md'],
210- // fullContent: false,
211- // title: 'Tutorial Documentation',
212- // description: 'All tutorials in a single file'
213- // }
214- // ],
215- } ,
173+ siteTitle : 'Psake' ,
174+ siteDescription : 'Comprehensive guide to the psake build automation tool, including installation, usage, and advanced features.' ,
175+ depth : 2 ,
176+ content : {
177+ includeBlog : true ,
178+ includePages : true ,
179+ enableLlmsFullTxt : true // Optional: generates llms-full.txt
180+ }
181+ }
216182 ] ,
217- ] ,
183+ ]
218184} ;
219185
220186export default config ;
0 commit comments