@acer
wow, that was it.
Yes, I had turned off the "show equation labels" in the Tools->Options->Display
This is one of the first things I do when I install Maple, as I hate these and do not like them and do not use them at all. To refer to something, I assign it to a variable. I do not need equation labels.
I had no idea that turning off the equation lables messes up the help pages now.
After turning them on, now all input in help page shows as 1D with equation numbers in them instead of 2D math,
But still, can't copy any individual command shown. As the command now itself has equation label embeded in it.
Here is an example from same page ?D
When copying the above command (the convert command) to my worksheet, it shows as
convert(??, diff);
In the worksheet. So if I wanted to run these two commands in my worksheet, I can't.
Better way to do help pages is to use normal variables. This way it is not hardcoded like this. So the above example would be this
e:=D(f)(0);
convert(e, diff);
Now one can copy each command and evaluate them in their own worksheet since there is no hardcoded label references that are only valid in the help page and not outside the help page.
I know assigning results to variables is very old fashioned and not the modern cool fashion like using equation labels, but it works everywhere and all the time and this is how Maple was in the good old days.