forked from AkkomaGang/akkoma
markdown.ex: put two-spaces before the description-newline
This commit is contained in:
parent
4785596a2c
commit
e501c822c9
1 changed files with 3 additions and 5 deletions
|
@ -74,13 +74,11 @@ defp print_suggestions(_file, ""), do: nil
|
||||||
|
|
||||||
defp print_suggestions(file, suggestions) do
|
defp print_suggestions(file, suggestions) do
|
||||||
if length(suggestions) > 1 do
|
if length(suggestions) > 1 do
|
||||||
IO.write(file, "\n\nSuggestions:\n")
|
IO.write(file, "Suggestions:\n")
|
||||||
|
|
||||||
for suggestion <- suggestions do
|
for suggestion <- suggestions do
|
||||||
print_suggestion(file, suggestion, true)
|
print_suggestion(file, suggestion, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
IO.write(file, "\n")
|
|
||||||
else
|
else
|
||||||
IO.write(file, " Suggestion: ")
|
IO.write(file, " Suggestion: ")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue