Jekyll Issue Mentions
Github #issueid mention support for your Jekyll site
Usage
Add the following to your site's Gemfile
gem 'jekyll-issue-mentions'
And add the following to your site's _config.yml
gems:
- jekyll-issue-mentions
In any page or post, use #issueid as you would normally, e.g.
Can you look at issue #1 today?
Will be converted to
Can you look at issue #1 today?
Configuration
Set the Github repo issue url:
jekyll-issue-mentions:
base_url: https://github.com/workato/jekyll-issue-mentions/issues
Or, you can use this shorthand:
jekyll-issue-mentions: https://github.com/workato/jekyll-issue-mentions/issues
Set the issue id pattern:
jekyll-issue-mentions:
base_url: https://github.com/workato/jekyll-issue-mentions/issues
issueid_pattern: '[0-9]{2,}'