@@ -180,15 +180,17 @@ <h2>Research Software Quality Indicators</h2>
180180
181181 < table id ="json-table ">
182182 < colgroup >
183- < col style ="width: 16%; ">
184- < col style ="width: 12%; ">
185- < col style ="width: 12%; ">
186- < col style ="width: 28%; ">
187- < col style ="width: 18%; ">
183+ < col style ="width: 16%; "> <!-- Name -->
184+ < col style ="width: 12%; "> <!-- Abbreviation -->
185+ < col style ="width: 12%; "> <!-- Keywords -->
186+ < col style ="width: 24%; "> <!-- Quality Dimension -->
187+ < col style ="width: 24%; "> <!-- Description -->
188+ < col style ="width: 12%; "> <!-- Source -->
188189 </ colgroup >
189190 < thead >
190191 < tr >
191192 < th > Name</ th >
193+ < th > Abbreviation</ th >
192194 < th > Keywords</ th >
193195 < th > Quality Dimension</ th >
194196 < th > Description</ th >
@@ -266,6 +268,10 @@ <h2>Research Software Quality Indicators</h2>
266268
267269 row . appendChild ( nameCell ) ;
268270
271+ const abbreviationCell = document . createElement ( "td" ) ;
272+ abbreviationCell . textContent = data . abbreviation || "" ;
273+ row . appendChild ( abbreviationCell ) ;
274+
269275 const keywordsCell = document . createElement ( "td" ) ;
270276 keywordsCell . textContent = Array . isArray ( data . keywords ) ? data . keywords . join ( ", " ) : data . keywords || "" ;
271277 row . appendChild ( keywordsCell ) ;
@@ -386,6 +392,7 @@ <h2>Research Software Quality Indicators</h2>
386392 const query = input . value . toLowerCase ( ) . trim ( ) ;
387393 const filtered = allData . filter ( item =>
388394 ( item . name && item . name . toLowerCase ( ) . includes ( query ) ) ||
395+ ( item . abbreviation && item . abbreviation . toLowerCase ( ) . includes ( query ) ) ||
389396 ( item . keywords && JSON . stringify ( item . keywords ) . toLowerCase ( ) . includes ( query ) ) ||
390397 ( item . description && item . description . toLowerCase ( ) . includes ( query ) ) ||
391398 ( item . identifier && item . identifier [ '@id' ] && item . identifier [ '@id' ] . toLowerCase ( ) . includes ( query ) )
0 commit comments