Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,37 @@ const config: Config = {
],
useAllContextsWithNoSearchContext: true,
},
]
],
[
'@sablier/docusaurus-plugin-llms',
{
generateLLMsTxt: true,
generateLLMsFullTxt: true,

llmsTxtFilename: 'docs/llms.txt',
llmsFullTxtFilename: 'docs/llms-full.txt',

excludeImports: true,
removeDuplicateHeadings: true,

ignoreFiles: [
'privacy_policy.md', // Has incomplete description
],

// Document ordering following sidebar structure
includeOrder: [
'overview.mdx',
'install.md',
'getting-started/*',
'core-concepts/*',
'component-development/*',
'user-guide/*',
'reference/*',
],

description: 'Tangle is a service and web app that allows users to build and run machine learning pipelines using drag and drop without having to set up a development environment.',
},
],
],

markdown: {
Expand Down
Loading