File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 8
8
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
9
9
< title > GroqCall</ title >
10
10
< link href ="
https://cdn.jsdelivr.net/npm/[email protected] /dist/tailwind.min.css "
rel ="
stylesheet "
/>
11
- < link href ="/static/markdown.css " rel ="stylesheet " /> s
11
+ < link href ="/static/markdown.css " rel ="stylesheet " />
12
12
< style >
13
13
html ,
14
14
body {
42
42
</ main >
43
43
< script src ="https://cdn.jsdelivr.net/npm/marked/marked.min.js "> </ script >
44
44
< script >
45
- // script.js
46
-
47
- // GitHub repository URL
48
45
const repoUrl = "https://api.github.com/repos/unclecode/groqcall/contents/README.md" ;
49
46
//const repoUrl = "http://0.0.0.0:8000/static/README.md";
50
47
76
73
const readmeContainer = document . getElementById ( "readme-container" ) ;
77
74
78
75
// Check if README content is already cached
79
- const cachedReadmeContent = null ; // localStorage.getItem("readmeContent");
76
+ const cachedReadmeContent = localStorage . getItem ( "readmeContent" ) ;
80
77
81
- if ( cachedReadmeContent ) {
78
+ if ( false && cachedReadmeContent ) {
82
79
// Use cached content
83
80
readmeContainer . innerHTML = markdownToHtml ( cachedReadmeContent ) ;
84
81
} else {
You can’t perform that action at this time.
0 commit comments