diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-09-17 22:14:56 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-09-17 23:05:26 +0200 |
commit | c0c56282007aff88a923bba4769af894cb6235af (patch) | |
tree | 087303bcd7afbb16576116df62cf0b780cce2fe0 /lib | |
parent | 106afaed58da3a25d1c4593e13192ad2145643e4 (diff) | |
download | pleroma-c0c56282007aff88a923bba4769af894cb6235af.tar.gz |
description.exs: remove empty strings on descriptions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/docs/markdown.ex | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/pleroma/docs/markdown.ex b/lib/pleroma/docs/markdown.ex index 20bd1c896..739e4fce3 100644 --- a/lib/pleroma/docs/markdown.ex +++ b/lib/pleroma/docs/markdown.ex @@ -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 |