In a text cell e.g.
The Mathematica built-in command to use is Solve.....
I'd like to insert a link on the word Solve, not to the external URL of Wolfram Documentation Center, but to internal Mathematica help page. Is it possible?
First, evaluate the following:
Hyperlink["Solve", "paclet:ref/Solve"]
Then copy the output link and paste it into your text cell.
Hyperlink["FullSimplify", "paclet:ref/FullSimplify"]
$\endgroup$
CellTags).
$\endgroup$
A solution with buttons.
Row[Table[
Hyperlink[Button[i], "paclet:ref/" <> i],
{i, {"Solve", "FullSimplify"}}]]
You can add more items as required. I hope it helps.