class MarkdownExec::MarkParse

def execute_block_with_error_handling


# Executes the block specified in the options
def execute_block_with_error_handling
  finalize_cli_argument_processing
  execute_code_block_based_on_options(@options)
rescue FileMissingError
  warn "File missing: #{$!}"
rescue StandardError
  error_handler('execute_block_with_error_handling')
end