description.exs: remove empty strings on descriptions

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-09-17 22:14:56 +02:00
commit c0c5628200
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE
2 changed files with 15 additions and 69 deletions

View file

@ -44,13 +44,17 @@ defmodule Pleroma.Docs.Markdown do
{:ok, config_path}
end
defp print_child_header(file, child) do
defp print_child_header(file, %{key: key, type: type, description: description} = _child) do
IO.write(
file,
"- `#{inspect(child[:key])}` (`#{inspect(child[:type])}`): #{child[:description]}\n"
"- `#{inspect(key)}` (`#{inspect(type)}`): #{description}\n"
)
end
defp print_child_header(file, %{key: key, type: type} = _child) do
IO.write(file, "- `#{inspect(key)}` (`#{inspect(type)}`)\n")
end
defp print_suggestion(file, suggestion) when is_list(suggestion) do
IO.write(file, " `#{inspect(suggestion)}`\n")
end