https://github.com/cyotek/markdigmantislink
Markdig extension that automatically add links to MantisBT issue items
https://github.com/cyotek/markdigmantislink
commonmark mantisbt markdig markdown
Last synced: about 2 months ago
JSON representation
Markdig extension that automatically add links to MantisBT issue items
- Host: GitHub
- URL: https://github.com/cyotek/markdigmantislink
- Owner: cyotek
- License: mit
- Created: 2017-08-05T21:34:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-26T06:32:07.000Z (over 4 years ago)
- Last Synced: 2025-03-29T18:51:16.096Z (3 months ago)
- Topics: commonmark, mantisbt, markdig, markdown
- Language: C#
- Homepage: https://www.cyotek.com/blog/writing-custom-markdig-extensions
- Size: 9.77 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Markdig MantisBT Linker
=======================This is a Markdig extension that automatically add links to Mantis Bug Tracker issue items within your markdown, e.g. #001753.
Getting Started
---------------* 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](https://www.cyotek.com/blog/writing-custom-markdig-extensions)" article on the cyotek blog.
Authors
-------* [Richard Moss](https://richardmoss.name)
Acknowledgements
----------------This project was heavily inspired by [Dave Clarke](https://daveclarke.me)'s [MarkdigJiraLinker](https://github.com/clarkd/MarkdigJiraLinker).
License
-------This project is licensed under the MIT license. See the LICENSE.txt for details.
Contributing
------------Please feel free to raise pull requests or issues for any issues you find.