We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf0381 commit e7bd8d9Copy full SHA for e7bd8d9
apps/svelte.dev/src/lib/server/llms.ts
@@ -3,7 +3,6 @@ import { dev } from '$app/environment';
3
import { index } from './content';
4
5
interface GenerateLlmContentOptions {
6
- prefix?: string;
7
ignore?: string[];
8
minimize?: Partial<MinimizeOptions>;
9
sections: Section[];
@@ -35,10 +34,6 @@ const defaults: MinimizeOptions = {
35
34
export function generate_llm_content(options: GenerateLlmContentOptions): string {
36
let content = '';
37
38
- if (options.prefix) {
39
- content = `${options.prefix}\n\n`;
40
- }
41
-
42
for (const section of options.sections) {
43
if (options.sections.length > 1) {
44
content += `${get_documentation_start_title(section)}\n\n`;
0 commit comments