Skip to content

Commit 2aa26ea

Browse files
1 parent bd1b222 commit 2aa26ea

25 files changed

Lines changed: 168 additions & 168 deletions

File tree

404.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -472,11 +472,11 @@
472472
<div class="rw-repo-name">
473473
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
474474
<div class="rw-repo-stats">
475-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
475+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
476476
stroke-width="2.5">
477477
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
478478
<line x1="7" y1="7" x2="7.01" y2="7" />
479-
</svg> <span id="git-version">v0.4.11</span></span>
479+
</svg> <span id="git-version">v0.4.12</span></span>
480480
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
481481
<path
482482
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -771,10 +771,10 @@ <h1>404 - Not found</h1>
771771
}
772772
(function () {
773773
var s = localStorage.getItem('rw-theme');
774-
if (s) {
775-
document.documentElement.setAttribute('data-theme', s);
774+
if (s) {
775+
document.documentElement.setAttribute('data-theme', s);
776776
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
777-
updateThemeBtn(s);
777+
updateThemeBtn(s);
778778
}
779779
})();
780780
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -815,7 +815,7 @@ <h1>404 - Not found</h1>
815815
const stars = data.stargazers_count;
816816
const forks = data.forks_count;
817817
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
818-
818+
819819
const starsEl = document.getElementById('git-stars');
820820
const forksEl = document.getElementById('git-forks');
821821
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -840,7 +840,7 @@ <h1>404 - Not found</h1>
840840
</svg>
841841
`;
842842
pre.appendChild(copyBtn);
843-
843+
844844
copyBtn.addEventListener('click', async () => {
845845
const codeEl = pre.querySelector('code');
846846
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

concepts/architecture/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -871,10 +871,10 @@ <h3 id="b-mcp-query-pipeline">B. MCP Query Pipeline</h3>
871871
}
872872
(function () {
873873
var s = localStorage.getItem('rw-theme');
874-
if (s) {
875-
document.documentElement.setAttribute('data-theme', s);
874+
if (s) {
875+
document.documentElement.setAttribute('data-theme', s);
876876
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
877-
updateThemeBtn(s);
877+
updateThemeBtn(s);
878878
}
879879
})();
880880
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -915,7 +915,7 @@ <h3 id="b-mcp-query-pipeline">B. MCP Query Pipeline</h3>
915915
const stars = data.stargazers_count;
916916
const forks = data.forks_count;
917917
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
918-
918+
919919
const starsEl = document.getElementById('git-stars');
920920
const forksEl = document.getElementById('git-forks');
921921
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -940,7 +940,7 @@ <h3 id="b-mcp-query-pipeline">B. MCP Query Pipeline</h3>
940940
</svg>
941941
`;
942942
pre.appendChild(copyBtn);
943-
943+
944944
copyBtn.addEventListener('click', async () => {
945945
const codeEl = pre.querySelector('code');
946946
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

concepts/backends/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -934,10 +934,10 @@ <h2 id="in-memory-vs-file-backed-selection-logic">In-Memory vs. File-Backed Sele
934934
}
935935
(function () {
936936
var s = localStorage.getItem('rw-theme');
937-
if (s) {
938-
document.documentElement.setAttribute('data-theme', s);
937+
if (s) {
938+
document.documentElement.setAttribute('data-theme', s);
939939
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
940-
updateThemeBtn(s);
940+
updateThemeBtn(s);
941941
}
942942
})();
943943
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -978,7 +978,7 @@ <h2 id="in-memory-vs-file-backed-selection-logic">In-Memory vs. File-Backed Sele
978978
const stars = data.stargazers_count;
979979
const forks = data.forks_count;
980980
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
981-
981+
982982
const starsEl = document.getElementById('git-stars');
983983
const forksEl = document.getElementById('git-forks');
984984
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -1003,7 +1003,7 @@ <h2 id="in-memory-vs-file-backed-selection-logic">In-Memory vs. File-Backed Sele
10031003
</svg>
10041004
`;
10051005
pre.appendChild(copyBtn);
1006-
1006+
10071007
copyBtn.addEventListener('click', async () => {
10081008
const codeEl = pre.querySelector('code');
10091009
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

concepts/graph-model/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -916,10 +916,10 @@ <h2 id="3-polyglot-schema-example">3. Polyglot Schema Example</h2>
916916
}
917917
(function () {
918918
var s = localStorage.getItem('rw-theme');
919-
if (s) {
920-
document.documentElement.setAttribute('data-theme', s);
919+
if (s) {
920+
document.documentElement.setAttribute('data-theme', s);
921921
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
922-
updateThemeBtn(s);
922+
updateThemeBtn(s);
923923
}
924924
})();
925925
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -960,7 +960,7 @@ <h2 id="3-polyglot-schema-example">3. Polyglot Schema Example</h2>
960960
const stars = data.stargazers_count;
961961
const forks = data.forks_count;
962962
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
963-
963+
964964
const starsEl = document.getElementById('git-stars');
965965
const forksEl = document.getElementById('git-forks');
966966
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -985,7 +985,7 @@ <h2 id="3-polyglot-schema-example">3. Polyglot Schema Example</h2>
985985
</svg>
986986
`;
987987
pre.appendChild(copyBtn);
988-
988+
989989
copyBtn.addEventListener('click', async () => {
990990
const codeEl = pre.querySelector('code');
991991
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

concepts/how-it-works/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -844,10 +844,10 @@ <h2 id="4-serving-queries-via-cypher">4. Serving Queries via Cypher</h2>
844844
}
845845
(function () {
846846
var s = localStorage.getItem('rw-theme');
847-
if (s) {
848-
document.documentElement.setAttribute('data-theme', s);
847+
if (s) {
848+
document.documentElement.setAttribute('data-theme', s);
849849
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
850-
updateThemeBtn(s);
850+
updateThemeBtn(s);
851851
}
852852
})();
853853
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -888,7 +888,7 @@ <h2 id="4-serving-queries-via-cypher">4. Serving Queries via Cypher</h2>
888888
const stars = data.stargazers_count;
889889
const forks = data.forks_count;
890890
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
891-
891+
892892
const starsEl = document.getElementById('git-stars');
893893
const forksEl = document.getElementById('git-forks');
894894
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -913,7 +913,7 @@ <h2 id="4-serving-queries-via-cypher">4. Serving Queries via Cypher</h2>
913913
</svg>
914914
`;
915915
pre.appendChild(copyBtn);
916-
916+
917917
copyBtn.addEventListener('click', async () => {
918918
const codeEl = pre.querySelector('code');
919919
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

contributing/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -844,10 +844,10 @@ <h2 id="pull-request-guidelines">Pull Request Guidelines</h2>
844844
}
845845
(function () {
846846
var s = localStorage.getItem('rw-theme');
847-
if (s) {
848-
document.documentElement.setAttribute('data-theme', s);
847+
if (s) {
848+
document.documentElement.setAttribute('data-theme', s);
849849
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
850-
updateThemeBtn(s);
850+
updateThemeBtn(s);
851851
}
852852
})();
853853
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -888,7 +888,7 @@ <h2 id="pull-request-guidelines">Pull Request Guidelines</h2>
888888
const stars = data.stargazers_count;
889889
const forks = data.forks_count;
890890
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
891-
891+
892892
const starsEl = document.getElementById('git-stars');
893893
const forksEl = document.getElementById('git-forks');
894894
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -913,7 +913,7 @@ <h2 id="pull-request-guidelines">Pull Request Guidelines</h2>
913913
</svg>
914914
`;
915915
pre.appendChild(copyBtn);
916-
916+
917917
copyBtn.addEventListener('click', async () => {
918918
const codeEl = pre.querySelector('code');
919919
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

contributing_languages/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -867,10 +867,10 @@ <h2 id="3-verification-diagnostic-queries">3. Verification &amp; Diagnostic Quer
867867
}
868868
(function () {
869869
var s = localStorage.getItem('rw-theme');
870-
if (s) {
871-
document.documentElement.setAttribute('data-theme', s);
870+
if (s) {
871+
document.documentElement.setAttribute('data-theme', s);
872872
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
873-
updateThemeBtn(s);
873+
updateThemeBtn(s);
874874
}
875875
})();
876876
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -911,7 +911,7 @@ <h2 id="3-verification-diagnostic-queries">3. Verification &amp; Diagnostic Quer
911911
const stars = data.stargazers_count;
912912
const forks = data.forks_count;
913913
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
914-
914+
915915
const starsEl = document.getElementById('git-stars');
916916
const forksEl = document.getElementById('git-forks');
917917
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -936,7 +936,7 @@ <h2 id="3-verification-diagnostic-queries">3. Verification &amp; Diagnostic Quer
936936
</svg>
937937
`;
938938
pre.appendChild(copyBtn);
939-
939+
940940
copyBtn.addEventListener('click', async () => {
941941
const codeEl = pre.querySelector('code');
942942
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

getting-started/installation/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@
483483
<div class="rw-repo-name">
484484
<span class="rw-repo-name__full">CodeGraphContext/CodeGraphContext</span>
485485
<div class="rw-repo-stats">
486-
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
486+
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor"
487487
stroke-width="2.5">
488488
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
489489
<line x1="7" y1="7" x2="7.01" y2="7" />
490-
</svg> <span id="git-version">v0.4.11</span></span>
490+
</svg> <span id="git-version">v0.4.12</span></span>
491491
<span class="rw-stat"><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor">
492492
<path
493493
d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
@@ -843,10 +843,10 @@ <h2 id="5-next-steps">5. Next Steps</h2>
843843
}
844844
(function () {
845845
var s = localStorage.getItem('rw-theme');
846-
if (s) {
847-
document.documentElement.setAttribute('data-theme', s);
846+
if (s) {
847+
document.documentElement.setAttribute('data-theme', s);
848848
document.body.setAttribute('data-md-color-scheme', s === 'dark' ? 'slate' : 'default');
849-
updateThemeBtn(s);
849+
updateThemeBtn(s);
850850
}
851851
})();
852852
function toggleSidebar() { document.querySelector('.rw-sidebar').classList.toggle('hidden'); }
@@ -887,7 +887,7 @@ <h2 id="5-next-steps">5. Next Steps</h2>
887887
const stars = data.stargazers_count;
888888
const forks = data.forks_count;
889889
const formatNum = (num) => num >= 1000 ? (num / 1000).toFixed(1) + 'k' : num;
890-
890+
891891
const starsEl = document.getElementById('git-stars');
892892
const forksEl = document.getElementById('git-forks');
893893
if (starsEl) starsEl.textContent = formatNum(stars);
@@ -912,7 +912,7 @@ <h2 id="5-next-steps">5. Next Steps</h2>
912912
</svg>
913913
`;
914914
pre.appendChild(copyBtn);
915-
915+
916916
copyBtn.addEventListener('click', async () => {
917917
const codeEl = pre.querySelector('code');
918918
const cleanText = codeEl ? codeEl.textContent : pre.textContent.replace(copyBtn.textContent, '');

0 commit comments

Comments
 (0)