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 "
487487stroke-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
493493d ="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 ( ) {
936936var 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 ) ;
939939document . body . setAttribute ( 'data-md-color-scheme' , s === 'dark' ? 'slate' : 'default' ) ;
940- updateThemeBtn ( s ) ;
940+ updateThemeBtn ( s ) ;
941941}
942942} ) ( ) ;
943943function 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
978978const stars = data . stargazers_count ;
979979const forks = data . forks_count ;
980980const formatNum = ( num ) => num >= 1000 ? ( num / 1000 ) . toFixed ( 1 ) + 'k' : num ;
981-
981+
982982const starsEl = document . getElementById ( 'git-stars' ) ;
983983const forksEl = document . getElementById ( 'git-forks' ) ;
984984if ( 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 ` ;
10051005pre . appendChild ( copyBtn ) ;
1006-
1006+
10071007copyBtn . addEventListener ( 'click' , async ( ) => {
10081008const codeEl = pre . querySelector ( 'code' ) ;
10091009const cleanText = codeEl ? codeEl . textContent : pre . textContent . replace ( copyBtn . textContent , '' ) ;
0 commit comments