class NotionOrbit::NotionObjects::BlockTypes::ToDo

Public Instance Methods

to_markdown() click to toggle source
# File lib/notion_orbit/notion_objects/block_types/to_do.rb, line 5
def to_markdown
  "[#{@raw_block[@type].checked ? 'x' : ' '}] " + super + "\n"
end