Incorrect document display and non-display of examples of functions when using JuMP

I’m using the latest JuMP(v1.23.4) on Win11, the documents of JuMP functions are displayed in an incorrect manner, which is exactly not the same with the document display on my another PC with JuMP(v.18.1, Win10 platform), it displays like this

and this

while the documents of non-JuMP functions display correct, just like this

I don’t know how to fix this problem, so is there anyone could help me with this?

Thanks a lot.

This doesn’t appear to be an issue with JuMP. In the REPL, looking up the help returns:

help?> Model
search: Model model ModelMode model_string model_convert

  Model([optimizer_factory;] add_bridges::Bool = true)

  Create a new instance of a JuMP model.

  If optimizer_factory is provided, the model is initialized with thhe
  optimizer returned by MOI.instantiate(optimizer_factory).

  If optimizer_factory is not provided, use set_optimizer to set the
  optimizer before calling optimize!.

  If add_bridges, JuMP adds a MOI.Bridges.LazyBridgeOptimizer to
  automatically reformulate the problem into a form supported by the
  optimizer.

  Example
  =======

  julia> import Ipopt
  
  julia> model = Model(Ipopt.Optimizer);
  
  julia> solver_name(model)
  "Ipopt"
  
  julia> import HiGHS
  
  julia> import MultiObjectiveAlgorithms as MOA
  
  julia> model = Model(() -> MOA.Optimizer(HiGHS.Optimizer); add_bridges = false);

I don’t know how you’re getting the in-line help, but it looks like a bug in that extension.

Edit: I’ve moved this to the vs-code section of the forum.