@@ -430,19 +430,18 @@ end
430430function list_of_solvers_and_extensions ()
431431 _LIST_OF_SOLVERS = Pair{String,String}[]
432432 _LIST_OF_EXTENSIONS =
433- Pair{String,String}[" rafaqz/ DimensionalData.jl" => " extensions/DimensionalData.md" ,]
433+ Pair{String,String}[" DimensionalData.jl" => " extensions/DimensionalData.md" ,]
434434 for (solver, data) in TOML. parsefile (joinpath (@__DIR__ , " packages.toml" ))
435- user = get (data, " user" , " jump-dev" )
436- user_repo = string (user, " /" , solver, get (data, " ext" , " .jl" ))
435+ repo = string (solver, get (data, " ext" , " .jl" ))
437436 if get (data, " extension" , false )
438- push! (_LIST_OF_EXTENSIONS, user_repo => " packages/$solver .md" )
437+ push! (_LIST_OF_EXTENSIONS, repo => " packages/$solver .md" )
439438 else
440- push! (_LIST_OF_SOLVERS, user_repo => " packages/$solver .md" )
439+ push! (_LIST_OF_SOLVERS, repo => " packages/$solver .md" )
441440 end
442441 end
443442 # Sort, with jump-dev repos at the start.
444- sort! (_LIST_OF_SOLVERS; by = x -> ( ! startswith (x[ 1 ], " jump-dev/ " ), x[ 1 ]) )
445- sort! (_LIST_OF_EXTENSIONS; by = x -> ( ! startswith (x[ 1 ], " jump-dev/ " ), x[ 1 ]) )
443+ sort! (_LIST_OF_SOLVERS; by = first )
444+ sort! (_LIST_OF_EXTENSIONS; by = first )
446445 pushfirst! (_LIST_OF_SOLVERS, " Introduction" => " packages/solvers.md" )
447446 pushfirst! (
448447 _LIST_OF_EXTENSIONS,
0 commit comments