module MarkdownUI::Renderers::List
Public Instance Methods
list(content, list_type)
click to toggle source
# File lib/markdown-ui/renderers/list.rb, line 4 def list(content, list_type) klass = "ui #{list_type}" html { MarkdownUI::Content::List.new(content, klass, list_type).render } end