HJLebbink / asm-dude

Visual Studio extension for assembly syntax highlighting and code completion in assembly files and the disassembly window
MIT License
4.13k stars 98 forks source link

Opening doc link in VS2017 uses "unsupported" internet explorer browser #104

Open kippesp opened 5 years ago

kippesp commented 5 years ago

The default documentation URL points to github.com. Doing this in VS2017 results in a message from github that internet explorer is an unsupported browser.

Workaround is to use local storage/clone of the wiki.

HJLebbink commented 5 years ago

Yes I havent found a solution for that in the last three years, thus if someone knows how to open the default webbrowser and direct it to a certain webpage, do let me know!

kippesp commented 5 years ago

Sorry for the duplicate--I searched. If anyone else is interested in my workaround, it is fairly trivial. Do this in gitbash (or macos or linux) with pandoc installed:

# after cloning the wiki
cd doc
for f in *.md; do pandoc -t html --css NICE_STYLE.css "$f" -s -o "${f%.md}"; done

The css style made it as attractive as the github wiki--just find a dark theme if you into that kind of UI.