├── .github ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── History.markdown ├── LICENSE ├── README.md ├── Rakefile ├── jekyll-mentions.gemspec ├── lib ├── jekyll-mentions.rb └── jekyll-mentions │ └── version.rb ├── script ├── bootstrap ├── cibuild ├── fmt ├── release └── test └── spec ├── fixtures ├── _config.yml ├── _docs │ ├── dont_touch_me.txt │ ├── file.md │ ├── special_characters.md │ └── with_liquid.md ├── _layouts │ ├── default.html │ ├── minified.html │ └── multiline_body_tag.html ├── _posts │ ├── 2016-01-01-awesome-post.md │ └── 2016-03-08-code-block.md ├── custom-url-01.md ├── custom-url-02.md ├── disabled-mentioning.md ├── index.md ├── leave-liquid-alone.md ├── mentioned-markdown.md ├── minified.md ├── multiline-body-tag.md ├── non-mentioned.md ├── parkr.txt └── test.json ├── mentions_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --order random 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/Gemfile -------------------------------------------------------------------------------- /History.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/History.markdown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-mentions.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/jekyll-mentions.gemspec -------------------------------------------------------------------------------- /lib/jekyll-mentions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/lib/jekyll-mentions.rb -------------------------------------------------------------------------------- /lib/jekyll-mentions/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module JekyllMentions 4 | VERSION = "1.6.0" 5 | end 6 | -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | bundle install -j8 $@ 4 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/script/fmt -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/script/release -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -ex 3 | 4 | bundle exec rspec "$@" 5 | -------------------------------------------------------------------------------- /spec/fixtures/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_config.yml -------------------------------------------------------------------------------- /spec/fixtures/_docs/dont_touch_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_docs/dont_touch_me.txt -------------------------------------------------------------------------------- /spec/fixtures/_docs/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_docs/file.md -------------------------------------------------------------------------------- /spec/fixtures/_docs/special_characters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_docs/special_characters.md -------------------------------------------------------------------------------- /spec/fixtures/_docs/with_liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_docs/with_liquid.md -------------------------------------------------------------------------------- /spec/fixtures/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_layouts/default.html -------------------------------------------------------------------------------- /spec/fixtures/_layouts/minified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_layouts/minified.html -------------------------------------------------------------------------------- /spec/fixtures/_layouts/multiline_body_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_layouts/multiline_body_tag.html -------------------------------------------------------------------------------- /spec/fixtures/_posts/2016-01-01-awesome-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_posts/2016-01-01-awesome-post.md -------------------------------------------------------------------------------- /spec/fixtures/_posts/2016-03-08-code-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/_posts/2016-03-08-code-block.md -------------------------------------------------------------------------------- /spec/fixtures/custom-url-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/custom-url-01.md -------------------------------------------------------------------------------- /spec/fixtures/custom-url-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/custom-url-02.md -------------------------------------------------------------------------------- /spec/fixtures/disabled-mentioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/disabled-mentioning.md -------------------------------------------------------------------------------- /spec/fixtures/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/index.md -------------------------------------------------------------------------------- /spec/fixtures/leave-liquid-alone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/leave-liquid-alone.md -------------------------------------------------------------------------------- /spec/fixtures/mentioned-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/mentioned-markdown.md -------------------------------------------------------------------------------- /spec/fixtures/minified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/minified.md -------------------------------------------------------------------------------- /spec/fixtures/multiline-body-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/multiline-body-tag.md -------------------------------------------------------------------------------- /spec/fixtures/non-mentioned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/non-mentioned.md -------------------------------------------------------------------------------- /spec/fixtures/parkr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/parkr.txt -------------------------------------------------------------------------------- /spec/fixtures/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/fixtures/test.json -------------------------------------------------------------------------------- /spec/mentions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/mentions_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/jekyll-mentions/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------