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!(//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