docs/markdown.ex: child header as "- key (type): description"

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-09-17 21:43:27 +02:00
parent 35dcea3e13
commit 7f211a48e0
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 7 additions and 5 deletions

View File

@ -44,6 +44,13 @@ defmodule Pleroma.Docs.Markdown do
{:ok, config_path}
end
defp print_child_header(file, child) do
IO.write(
file,
"- `#{inspect(child[:key])}` (`#{inspect(child[:type])}`): #{child[:description]}\n"
)
end
defp print_suggestion(file, suggestion) when is_list(suggestion) do
IO.write(file, " `#{inspect(suggestion)}`\n")
end
@ -70,9 +77,4 @@ defmodule Pleroma.Docs.Markdown do
print_suggestion(file, List.first(suggestions))
end
end
defp print_child_header(file, child) do
IO.write(file, "- `#{inspect(child[:key])}` -`#{inspect(child[:type])}` \n")
IO.write(file, "#{child[:description]} \n")
end
end