Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-06-15 12:04:35 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-06-15 12:04:35 +0300
commit040a9839f407e1978217898e950a15a297686313 (patch)
tree0e6d525e8bd93a4e5987aef3380ac19911ba4b39
parent6c6fe19ec898367e0147cff511714c69ecac63ec (diff)
parent4d202f54c5f91228520683360e533d64eceaf277 (diff)
Merge branch 'single-quote-anchor-links' into 'master'
Fix strange anchor links caused by single quotes Closes #84 See merge request gitlab-com/gitlab-docs!280
-rw-r--r--lib/helpers/redcarpet_render.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/helpers/redcarpet_render.rb b/lib/helpers/redcarpet_render.rb
index fe59d31e..86e2a07e 100644
--- a/lib/helpers/redcarpet_render.rb
+++ b/lib/helpers/redcarpet_render.rb
@@ -12,6 +12,7 @@ module Nanoc::Helpers
anchor = text.gsub(/\s+/, '-').gsub(/<\/?[^>]*>/, '').downcase
# https://github.com/rails/rails/blob/e491b2c06329afb3c989261a2865d2a93c8b84b8/activesupport/lib/active_support/inflector/transliterate.rb#L86
anchor.gsub!(/[^a-z0-9\-_]+/i, '-')
+ anchor.gsub!(/39-/, '') # remove weird symbol https://gitlab.com/gitlab-com/gitlab-docs/issues/84
anchor.squeeze!('-') # replace multiple dashes with one
anchor.gsub!(/^-|-$/, '') # remove any first or last dashes