module CCK::Examples

def markdown

NB: At the moment this (1 example - 'markdown'), isn't compatible with cucumber-ruby
Return the paths for each example that is of 'markdown' type
def markdown
  Dir.entries(cck_features_folder_location).select do |file_or_folder|
    next if file_or_folder.start_with?('.')
    markdown_example?(File.join(cck_features_folder_location, file_or_folder))
  end
end