markdown.ex: put two-spaces before the description-newline

develop
Haelwenn (lanodan) Monnier 2019-09-17 23:02:24 +02:00
parent 4785596a2c
commit e501c822c9
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 3 additions and 5 deletions

View File

@ -74,13 +74,11 @@ defmodule Pleroma.Docs.Markdown do
defp print_suggestions(file, suggestions) do
if length(suggestions) > 1 do
IO.write(file, "\n\nSuggestions:\n")
IO.write(file, "Suggestions:\n")
for suggestion <- suggestions do
print_suggestion(file, suggestion, true)
end
IO.write(file, "\n")
else
IO.write(file, " Suggestion: ")