Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Only remove -spec/-type from first line #1894

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions lib/ex_doc/language/erlang.ex
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,11 @@ defmodule ExDoc.Language.Erlang do
offset = byte_size(Atom.to_string(type)) + 2

options = [linewidth: 98 + offset]
:erl_pp.attribute(ast, options) |> IO.iodata_to_binary() |> trim_offset(offset)

:erl_pp.attribute(ast, options)
|> IO.chardata_to_string()
|> String.trim()
|> String.trim_leading("-#{Atom.to_string(type)} ")
end

## Helpers
Expand All @@ -723,15 +727,4 @@ defmodule ExDoc.Language.Erlang do
:module
end
end

# `-type t() :: atom()` becomes `t() :: atom().`
defp trim_offset(binary, offset) do
binary
|> String.trim()
|> String.split("\n")
|> Enum.map(fn line ->
binary_part(line, offset, byte_size(line) - offset)
end)
|> Enum.join("\n")
end
end
Loading