File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
apps/svelte.dev/src/lib/server Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export function generate_llm_content(options: GenerateLlmContentOptions): string
3636
3737 for ( const section of options . sections ) {
3838 if ( options . sections . length > 1 ) {
39- content += `${ get_documentation_start_title ( section ) } \n\n` ;
39+ content += `# Start of ${ section . title } documentation \n\n` ;
4040 }
4141
4242 for ( const [ path , document ] of Object . entries ( index ) ) {
@@ -67,10 +67,6 @@ export function get_documentation_title(section: Section): string {
6767 return `This is the developer documentation for ${ section . title } .` ;
6868}
6969
70- export function get_documentation_start_title ( section : Section ) : string {
71- return `# Start of ${ section . title } documentation` ;
72- }
73-
7470function minimize_content ( content : string , options ?: Partial < MinimizeOptions > ) : string {
7571 // Merge with defaults, but only for properties that are defined
7672 const settings : MinimizeOptions = { ...defaults , ...options } ;
You can’t perform that action at this time.
0 commit comments