From 29c400e122a941d602afbb25fba3dcd05e218888 Mon Sep 17 00:00:00 2001 From: Jared Dillard Date: Sun, 18 May 2025 20:55:54 -0700 Subject: [PATCH] fix linter --- docs/source/advanced-configuration.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/advanced-configuration.rst b/docs/source/advanced-configuration.rst index 592162a..73b2d1a 100644 --- a/docs/source/advanced-configuration.rst +++ b/docs/source/advanced-configuration.rst @@ -38,7 +38,7 @@ If you only want one of the files, you can disable generation of the other: # Disable summary file llms_txt_file = False - + # Disable full documentation file llms_txt_full_file = False @@ -152,17 +152,17 @@ Here's a complete example showing multiple configuration options: llms_txt_filename = "ai-summary.txt" llms_txt_full_filename = "ai-full-docs.txt" llms_txt_full_max_size = 50000 - + # Content customization llms_txt_title = "Project Documentation for AI Assistants" llms_txt_summary = """ This is a comprehensive documentation set for our project. It includes API references, usage examples, and tutorials. """ - + # Path handling html_baseurl = "https://docs.example.com/" llms_txt_directives = ["custom-image", "custom-include"] - + # Content filtering llms_txt_exclude = ["search", "genindex", "404", "private_*"]