# File lib/refinerycms-theming.rb, line 61
        def stylesheet_link_tag(*sources)
          theme = (arguments = sources.dup).extract_options![:theme] == true # don't ruin the current sources object
          tag = super
          # inject /theme/ into the stylesheet link tag href if this is themed.
          tag.gsub!(/\/stylesheets\//, "/theme/stylesheets/") if theme
          tag.gsub(/theme=(.+?)\ /, '') # we need to remove any addition of theme='false' etc.
        end