19070: Still trying to fix test_with_arvbox
[arvados.git] / doc / zenweb-textile.rb
index bdd716267bc569b00a2d54ceb6c53fa83fa7b9e7..0b28a6174d5e2a4160c59dfe213d2273de4ba757 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: CC-BY-SA-3.0
+
 require 'zenweb'
 
 module ZenwebTextile
@@ -10,14 +14,8 @@ module Zenweb
     ##
     # Render a page's textile and return the resulting html
     def render_textile page, content
-      textile body
-    end
-
-    ##
-    # Render textile in +content+ 
-    def textile content
       require 'RedCloth'
-      @textile = RedCloth.new(content).to_html
+      RedCloth.new(content ? content : self.body).to_html
     end
   end
 end