This is a Markdig extension that automatically add links to Mantis Bug Tracker issue items within your markdown, e.g. #001753.
- Build & reference the library
- Add the extension to your pipeline using the extension method
UseMantisLinks
- Set your MantisBT base URL within the options
- All done!
var pipeline = new MarkdownPipelineBuilder()
.UseMantisLinks(new MantisLinkOptions("https://issues.company.net/")
.Build();
For an overview on how to build Markdig extensions using this library as an example, see the "Writing custom Markdig extensions" article on the cyotek blog.
This project was heavily inspired by Dave Clarke's MarkdigJiraLinker.
This project is licensed under the MIT license. See the LICENSE.txt for details.
Please feel free to raise pull requests or issues for any issues you find.