module CCK::Examples
def markdown
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