about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/lib/bangtags.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb
index f40ccede3..def4432d2 100644
--- a/app/lib/bangtags.rb
+++ b/app/lib/bangtags.rb
@@ -594,6 +594,11 @@ class Bangtags
             tf_cmd[1..-1].in_groups_of(2) do |args|
               chunk.gsub!(*args) if args.all?
             end
+          when 'stripanchors'
+            chunk.gsub!(/<a .*?<\/a>/mi, '')
+          when 'striplinks'
+            chunk.gsub!(/\S+:\/\/[\w\-]+\.\S+/, '')
+            chunk = ActionController::Base.helpers.strip_links(chunk)
           when 'head', 'take'
             n = tf_cmd[1].to_i
             n = 1 unless n > 0