diff options
author | EuAndreh <eu@euandre.org> | 2021-09-03 15:44:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-03 15:45:22 -0300 |
commit | 2232d77eb3cb918fc44112ce9a7e948ab8f6fe67 (patch) | |
tree | f8cb75908f7a50ed2dcbaa3bd26abf0d13e59641 /_plugins | |
parent | pastebin: Auto-add _pastebins/2021-09-03-sicp-persistent-on-queue.md (diff) | |
download | euandre.org-2232d77eb3cb918fc44112ce9a7e948ab8f6fe67.tar.gz euandre.org-2232d77eb3cb918fc44112ce9a7e948ab8f6fe67.tar.xz |
_plugins/linter.rb: Fix slugifying of ()
Diffstat (limited to '')
-rw-r--r-- | _plugins/linter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_plugins/linter.rb b/_plugins/linter.rb index 2bdac1a..5f3a477 100644 --- a/_plugins/linter.rb +++ b/_plugins/linter.rb @@ -28,7 +28,7 @@ module Jekyll def slugify(s) s.ljust(100) - .gsub(/[']/, '') + .gsub(/[()']/, '') .gsub(/[\W]+/, ' ') .strip .gsub(/\s\s+/, '-') |