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.
0 parents commit a230662Copy full SHA for a230662
index.html
@@ -0,0 +1,18 @@
1
+<html>
2
+ <body>
3
+ <script>
4
+ (async () => {
5
+ const response = await fetch('https://api.github.com/repos/elastic/elasticsearch-net/contents?ref=refdoc');
6
+ const data = await response.json();
7
+ let htmlString = '<ul>';
8
+
9
+ for (let file of data) {
10
+ htmlString += `<li><a href="${file.path}">${file.name}</a></li>`;
11
+ }
12
13
+ htmlString += '</ul>';
14
+ document.getElementsByTagName('body')[0].innerHTML = htmlString;
15
+ })()
16
+ </script>
17
18
+</html>
0 commit comments