module Literati
Constants
- VERSION
Public Class Methods
render(content)
click to toggle source
Render the given content to HTML.
content - Literate Haskell content to render to HTML
Returns the literate Haskell rendered as HTML.
# File lib/literati.rb, line 9 def self.render(content) Renderer.new(content).to_html end