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 5df47ce commit dc5f07fCopy full SHA for dc5f07f
crates/code2prompt-core/src/default_template_xml.hbs
@@ -1,22 +1,21 @@
1
-
2
-<directory>{{ absolute_code_path }}</directory>
+<directory>{{absolute_code_path}}</directory>
3
4
<source-tree>
5
-{{ source_tree }}
+ {{source_tree}}
6
</source-tree>
7
8
<files>
9
-{{#each files}}
10
-{{#if code}}
11
-<file path="{{ path }}">
12
-{{ code }}
13
-</file>
14
-{{/if}}
15
-{{/each}}
+ {{#each files}}
+ {{#if code}}
+ <file path="{{path}}">
+ {{code}}
+ </file>
+ {{/if}}
+ {{/each}}
16
</files>
17
18
{{#if git_diff}}
19
-<git-diff>
20
-{{ git_diff }}
21
-</git-diff>
+ <git-diff>
+ {{git_diff}}
+ </git-diff>
22
{{/if}}
crates/code2prompt/src/model/cache.rs
0 commit comments