forked from AkkomaGang/akkoma
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
2 changed files with 4 additions and 1 deletions
|
@ -79,6 +79,8 @@ defp print_suggestions(file, suggestions) do
|
|||
for suggestion <- suggestions do
|
||||
print_suggestion(file, suggestion, true)
|
||||
end
|
||||
|
||||
IO.write(file, "\n")
|
||||
else
|
||||
IO.write(file, " Suggestion: ")
|
||||
|
||||
|
|
3
mix.exs
3
mix.exs
|
@ -174,7 +174,8 @@ defp aliases do
|
|||
"ecto.rollback": ["pleroma.ecto.rollback"],
|
||||
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
||||
"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
|
||||
|
||||
|
|
Loading…
Reference in a new issue