File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ async function generateSite() {
27
27
// Generate _config.yml for Jekyll
28
28
const jekyllConfig = `\
29
29
# Site settings
30
- title: Graph-Break Registry
31
- description: A registry of PyTorch Dynamo graph breaks.
30
+ title: ""
31
+ description: ""
32
32
33
33
# Base URL for the site
34
34
# This is crucial for correct linking on GitHub Pages
@@ -87,26 +87,30 @@ Below are all known graph breaks detected by Dynamo.
87
87
88
88
## Graph-Break Type
89
89
*Short name describing what triggered the graph break*
90
+
90
91
${ entry . Gb_type }
91
92
92
93
## Context
93
94
*Values or code snippet captured at the break point*
95
+
94
96
${ entry . Context || '*No context provided.*' }
95
97
96
98
## Explanation
97
99
*Why this specific graph break happened*
100
+
98
101
${ entry . Explanation || '*No explanation provided.*' }
99
102
100
103
## Hints
101
104
*Suggestions for fixing or working around the break*
105
+
102
106
${ entry . Hints ?. length ? entry . Hints . map ( h => `- ${ h } ` ) . join ( '\n' ) : '*No hints provided.*' }
103
107
104
108
${ entry . Additional_Info ?. length ? `
105
109
## Additional Information
106
110
${ entry . Additional_Info . map ( info => `- ${ info } ` ) . join ( '\n' ) }
107
111
` : '' }
108
112
109
- [Back to Registry](../index.md )
113
+ [Back to Registry](../index.html )
110
114
` ;
111
115
fs . writeFileSync ( path . join ( gbDir , `${ id . toLowerCase ( ) } .md` ) , detailMd ) ;
112
116
} ) ;
You can’t perform that action at this time.
0 commit comments