class ReverseMarkdown::Converters::Dl

Public Instance Methods

convert(node, state = {}) click to toggle source
# File lib/solargraph/converters/dl.rb, line 4
def convert node, state = {}
  content = treat_children(node, state).strip
  "\n\n#{content}\n"
end