mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
AutoLinks option to open in new window #140
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pebezo on GitHub (Sep 20, 2017).
Hi,
I noticed that JiraLinks has this feature, but not AutoLinks. Would you consider a PR for this?
Thanks.
@xoofx commented on GitHub (Sep 20, 2017):
sure.
@pebezo commented on GitHub (Oct 22, 2017):
When I open the solution with VS2015 (it looks like the .sln file was made by VS2015) I cannot load the Markdig project. I get:
If I try with VS2017, when compiling Markdig, I get:
Any ideas?
@xoofx commented on GitHub (Oct 22, 2017):
You need most likely to install UWP components (10240) from the Visual Studio 2017 installer. Don't recall exactly the option... I should add a part in the readme about this.
@pebezo commented on GitHub (Oct 22, 2017):
I installed Universal Windows Platform, but Windows 10 SDK (10.0.10240.0) was marked as optional. After checking / installing that option I'm now able to build. Thanks.
@pebezo commented on GitHub (Oct 23, 2017):
JiraLinks has the
OpenInNewWindowpropertytrueby default. As far as I can tell, the tests only check for thetruevalue.In the case of AutoLink, setting a similar value to true would be a breaking change, so we should probably have it
falseby default. As far as testing, would you like a clone of AutoLinks.md that hastarget="blank"or just have hand written tests (i.e. not auto generated from .md files) that would test the new option on AutoLink?Thanks