File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ luaTable += `}`;
3838>
3939 <p >
4040 This is a list San Andreas surface materials that are initialized in the
41- game's <em >surfinfo.dat</em > file. These IDs can be used with functions such
41+ game's <code >surfinfo.dat</code > file. These IDs can be used with functions such
4242 as <a href =" /reference/engineSetSurfaceProperties"
4343 >engineSetSurfaceProperties</a
4444 >.
Original file line number Diff line number Diff line change @@ -129,6 +129,10 @@ export function getSeeAlsoLinksFromList(seeAlsoList: string[]): SeeAlsoLinkGroup
129129 groupedMap . get ( title ) ! . push ( ...links ) ;
130130 }
131131
132+ for ( const links of groupedMap . values ( ) ) {
133+ links . sort ( ( a , b ) => a . name . localeCompare ( b . name ) ) ;
134+ }
135+
132136 // Preserve input order for group titles
133137 const seenTitles = new Set < string > ( ) ;
134138 const orderedTitles = seeAlsoList
You can’t perform that action at this time.
0 commit comments