Hello everyone:
I have an old website which is pure html and the majority of its pages have links that are referenced to themselves. Is composed about 500 pages.
I want to change the link href=internal-page.html to [[internal-page]]
I tried HTMLas (Nirsoft) to strip html, but still far from “good enough”.
Like explained in the second link from my earlier reply, you could first back up your vault, then open it in VSCode and use the Edit>Replace in all files command with regex toggled on to search for
href=(.*)\.html
and replace all occurrences with
[[$1]]
Hope this helps. Again, make sure you save a backup first. And I recommend reviewing all the occurrences that will be altered before making the commitment.