class ReverseMarkdown::Converters::Dd

Public Instance Methods

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