markdown.ex: end suggestions list with a newline
Otherwise we end up with suggestion on the same level as the childs Markdown is a fuck…
This commit is contained in:
parent
d2097fd0f5
commit
4785596a2c
|
@ -79,6 +79,8 @@ defp print_suggestions(file, suggestions) do
|
||||||
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: ")
|
||||||
|
|
||||||
|
|
3
mix.exs
3
mix.exs
|
@ -174,7 +174,8 @@ defp aliases do
|
||||||
"ecto.rollback": ["pleroma.ecto.rollback"],
|
"ecto.rollback": ["pleroma.ecto.rollback"],
|
||||||
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
||||||
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
||||||
test: ["ecto.create --quiet", "ecto.migrate", "test"]
|
test: ["ecto.create --quiet", "ecto.migrate", "test"],
|
||||||
|
docs: ["pleroma.docs", "docs"]
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue