├── .releaserc.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin ├── build.js └── grammars.js ├── composer.json ├── config └── filament-knowledge-base.php ├── database └── factories │ └── ModelFactory.php ├── dist └── js │ ├── anchors-component.js │ └── modals-component.js ├── package.json ├── pint.json ├── resources ├── js │ ├── anchors-component.js │ └── modals-component.js ├── lang │ ├── ar │ │ └── translations.php │ ├── cs │ │ └── translations.php │ ├── da │ │ └── translations.php │ ├── de │ │ └── translations.php │ ├── en │ │ └── translations.php │ ├── fa │ │ └── translations.php │ ├── fr │ │ └── translations.php │ ├── nl │ │ └── translations.php │ ├── pt_BR │ │ └── translations.php │ ├── pt_PT │ │ └── translations.php │ ├── ru │ │ └── translations.php │ └── uk │ │ └── translations.php └── views │ ├── .gitkeep │ ├── code-block.blade.php │ ├── components │ └── content.blade.php │ ├── documentation.blade.php │ ├── livewire │ ├── help-menu.blade.php │ └── modals.blade.php │ ├── modals.blade.php │ ├── pages │ └── section.blade.php │ └── sidebar-action.blade.php ├── src ├── Actions │ ├── Forms │ │ └── Components │ │ │ └── HelpAction.php │ ├── HelpAction.php │ └── Tables │ │ └── Components │ │ └── HelpAction.php ├── Commands │ └── MakeDocumentationCommand.php ├── Concerns │ ├── CanConfigureCommonMark.php │ ├── CanDisableBreadcrumbs.php │ ├── CanDisableFilamentStyles.php │ ├── CanDisableModalLinks.php │ ├── CanDisableSyntaxHighlighting.php │ ├── HasAnchorSymbol.php │ ├── HasArticleClass.php │ ├── HasBackToDefaultPanelButton.php │ ├── HasDocumentable.php │ ├── HasKnowledgeBasePanelButton.php │ ├── HasModalPreviews.php │ └── HasTableOfContents.php ├── Contracts │ ├── Documentable.php │ └── HasKnowledgeBase.php ├── Enums │ ├── NodeType.php │ └── TableOfContentsPosition.php ├── Facades │ └── KnowledgeBase.php ├── Filament │ ├── Navigation │ │ └── Navigation.php │ ├── Pages │ │ └── ViewDocumentation.php │ └── Resources │ │ └── DocumentationResource.php ├── KnowledgeBase.php ├── KnowledgeBaseRegistry.php ├── KnowledgeBaseServiceProvider.php ├── Livewire │ ├── HelpMenu.php │ └── Modals.php ├── Markdown │ ├── MarkdownRenderer.php │ ├── Parsers │ │ └── IncludeParser.php │ └── Renderers │ │ ├── FencedCodeRenderer.php │ │ └── ImageRenderer.php ├── Models │ └── FlatfileNode.php ├── Plugins │ ├── KnowledgeBaseCompanionPlugin.php │ └── KnowledgeBasePlugin.php └── Support │ └── FlatfileParser.php └── stubs └── markdown.md.stub /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/bin/build.js -------------------------------------------------------------------------------- /bin/grammars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/bin/grammars.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/composer.json -------------------------------------------------------------------------------- /config/filament-knowledge-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/config/filament-knowledge-base.php -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /dist/js/anchors-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/dist/js/anchors-component.js -------------------------------------------------------------------------------- /dist/js/modals-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/dist/js/modals-component.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/package.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/pint.json -------------------------------------------------------------------------------- /resources/js/anchors-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/js/anchors-component.js -------------------------------------------------------------------------------- /resources/js/modals-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/js/modals-component.js -------------------------------------------------------------------------------- /resources/lang/ar/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/ar/translations.php -------------------------------------------------------------------------------- /resources/lang/cs/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/cs/translations.php -------------------------------------------------------------------------------- /resources/lang/da/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/da/translations.php -------------------------------------------------------------------------------- /resources/lang/de/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/de/translations.php -------------------------------------------------------------------------------- /resources/lang/en/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/en/translations.php -------------------------------------------------------------------------------- /resources/lang/fa/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/fa/translations.php -------------------------------------------------------------------------------- /resources/lang/fr/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/fr/translations.php -------------------------------------------------------------------------------- /resources/lang/nl/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/nl/translations.php -------------------------------------------------------------------------------- /resources/lang/pt_BR/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/pt_BR/translations.php -------------------------------------------------------------------------------- /resources/lang/pt_PT/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/pt_PT/translations.php -------------------------------------------------------------------------------- /resources/lang/ru/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/ru/translations.php -------------------------------------------------------------------------------- /resources/lang/uk/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/lang/uk/translations.php -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/code-block.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/code-block.blade.php -------------------------------------------------------------------------------- /resources/views/components/content.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/components/content.blade.php -------------------------------------------------------------------------------- /resources/views/documentation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/documentation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/help-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/livewire/help-menu.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/modals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/livewire/modals.blade.php -------------------------------------------------------------------------------- /resources/views/modals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/modals.blade.php -------------------------------------------------------------------------------- /resources/views/pages/section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/pages/section.blade.php -------------------------------------------------------------------------------- /resources/views/sidebar-action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/resources/views/sidebar-action.blade.php -------------------------------------------------------------------------------- /src/Actions/Forms/Components/HelpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Actions/Forms/Components/HelpAction.php -------------------------------------------------------------------------------- /src/Actions/HelpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Actions/HelpAction.php -------------------------------------------------------------------------------- /src/Actions/Tables/Components/HelpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Actions/Tables/Components/HelpAction.php -------------------------------------------------------------------------------- /src/Commands/MakeDocumentationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Commands/MakeDocumentationCommand.php -------------------------------------------------------------------------------- /src/Concerns/CanConfigureCommonMark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/CanConfigureCommonMark.php -------------------------------------------------------------------------------- /src/Concerns/CanDisableBreadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/CanDisableBreadcrumbs.php -------------------------------------------------------------------------------- /src/Concerns/CanDisableFilamentStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/CanDisableFilamentStyles.php -------------------------------------------------------------------------------- /src/Concerns/CanDisableModalLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/CanDisableModalLinks.php -------------------------------------------------------------------------------- /src/Concerns/CanDisableSyntaxHighlighting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/CanDisableSyntaxHighlighting.php -------------------------------------------------------------------------------- /src/Concerns/HasAnchorSymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasAnchorSymbol.php -------------------------------------------------------------------------------- /src/Concerns/HasArticleClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasArticleClass.php -------------------------------------------------------------------------------- /src/Concerns/HasBackToDefaultPanelButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasBackToDefaultPanelButton.php -------------------------------------------------------------------------------- /src/Concerns/HasDocumentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasDocumentable.php -------------------------------------------------------------------------------- /src/Concerns/HasKnowledgeBasePanelButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasKnowledgeBasePanelButton.php -------------------------------------------------------------------------------- /src/Concerns/HasModalPreviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasModalPreviews.php -------------------------------------------------------------------------------- /src/Concerns/HasTableOfContents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Concerns/HasTableOfContents.php -------------------------------------------------------------------------------- /src/Contracts/Documentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Contracts/Documentable.php -------------------------------------------------------------------------------- /src/Contracts/HasKnowledgeBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Contracts/HasKnowledgeBase.php -------------------------------------------------------------------------------- /src/Enums/NodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Enums/NodeType.php -------------------------------------------------------------------------------- /src/Enums/TableOfContentsPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Enums/TableOfContentsPosition.php -------------------------------------------------------------------------------- /src/Facades/KnowledgeBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Facades/KnowledgeBase.php -------------------------------------------------------------------------------- /src/Filament/Navigation/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Filament/Navigation/Navigation.php -------------------------------------------------------------------------------- /src/Filament/Pages/ViewDocumentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Filament/Pages/ViewDocumentation.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Filament/Resources/DocumentationResource.php -------------------------------------------------------------------------------- /src/KnowledgeBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/KnowledgeBase.php -------------------------------------------------------------------------------- /src/KnowledgeBaseRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/KnowledgeBaseRegistry.php -------------------------------------------------------------------------------- /src/KnowledgeBaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/KnowledgeBaseServiceProvider.php -------------------------------------------------------------------------------- /src/Livewire/HelpMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Livewire/HelpMenu.php -------------------------------------------------------------------------------- /src/Livewire/Modals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Livewire/Modals.php -------------------------------------------------------------------------------- /src/Markdown/MarkdownRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Markdown/MarkdownRenderer.php -------------------------------------------------------------------------------- /src/Markdown/Parsers/IncludeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Markdown/Parsers/IncludeParser.php -------------------------------------------------------------------------------- /src/Markdown/Renderers/FencedCodeRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Markdown/Renderers/FencedCodeRenderer.php -------------------------------------------------------------------------------- /src/Markdown/Renderers/ImageRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Markdown/Renderers/ImageRenderer.php -------------------------------------------------------------------------------- /src/Models/FlatfileNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Models/FlatfileNode.php -------------------------------------------------------------------------------- /src/Plugins/KnowledgeBaseCompanionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Plugins/KnowledgeBaseCompanionPlugin.php -------------------------------------------------------------------------------- /src/Plugins/KnowledgeBasePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Plugins/KnowledgeBasePlugin.php -------------------------------------------------------------------------------- /src/Support/FlatfileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/src/Support/FlatfileParser.php -------------------------------------------------------------------------------- /stubs/markdown.md.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-knowledge-base/HEAD/stubs/markdown.md.stub --------------------------------------------------------------------------------