fastlane/lib/assets/Actions.md.erb in fastlane-2.50.0 vs fastlane/lib/assets/Actions.md.erb in fastlane-2.50.1
- old
+ new
@@ -23,25 +23,21 @@
- [Plugins](https://docs.fastlane.tools/plugins/available-plugins)
<%- @categories.each do |category, actions| %>
# <%= category %>
-<div class='category-actions'>
-
<%- actions.sort.to_h.each do |_number_of_launches, action| -%>
-<div class='action'>
-
### <%= action.action_name %>
<%= action.description %>
<%= "> #{action.deprecated_notes.gsub("\n\n", "\n")}" unless action.deprecated_notes.to_s.empty? %>
<%= "> #{action.details.gsub("\n\n", "\n")}" unless action.details.to_s.empty? %>
-<%= action.action_name %> |
+<%= action.action_name %> |
-----|----
Supported platforms | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
Author | @<%= Array(action.author || action.authors).join(", @") %>
<%- unless action.return_value.to_s.empty? -%>
Returns | <%= action.return_value %>
@@ -69,13 +65,11 @@
<%- next unless config_item.kind_of?(FastlaneCore::ConfigItem) -%>
<%- next if config_item.description.to_s.length == 0 -%>
`<%= config_item.key %>` | <%= config_item.description %>
<%- end %>
</details>
-</div>
<% end %><%# End of action.available_options... %>
<%- end %><%# End of actions.sort... %>
-</div>
<%- end %><%# End of categories.each %>