diff --git a/docs/_plugins/production_tag.rb b/docs/_plugins/production_tag.rb index de860cf22ef83..0409239135661 100644 --- a/docs/_plugins/production_tag.rb +++ b/docs/_plugins/production_tag.rb @@ -14,13 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # + module Jekyll class ProductionTag < Liquid::Block - - def initialize(tag_name, markup, tokens) - super - end - def render(context) if ENV['PRODUCTION'] then super else "" end end