description.exs: remove empty strings on descriptions
This commit is contained in:
parent
106afaed58
commit
c0c5628200
2 changed files with 15 additions and 69 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue