Skip to content

Commit e7bd8d9

Browse files
committed
unused
1 parent bdf0381 commit e7bd8d9

File tree

1 file changed

+0
-5
lines changed
  • apps/svelte.dev/src/lib/server

1 file changed

+0
-5
lines changed

apps/svelte.dev/src/lib/server/llms.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { dev } from '$app/environment';
33
import { index } from './content';
44

55
interface GenerateLlmContentOptions {
6-
prefix?: string;
76
ignore?: string[];
87
minimize?: Partial<MinimizeOptions>;
98
sections: Section[];
@@ -35,10 +34,6 @@ const defaults: MinimizeOptions = {
3534
export function generate_llm_content(options: GenerateLlmContentOptions): string {
3635
let content = '';
3736

38-
if (options.prefix) {
39-
content = `${options.prefix}\n\n`;
40-
}
41-
4237
for (const section of options.sections) {
4338
if (options.sections.length > 1) {
4439
content += `${get_documentation_start_title(section)}\n\n`;

0 commit comments

Comments
 (0)