Skip to content

Commit

Permalink
formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Sep 14, 2024
1 parent e5975de commit a0607e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,16 @@ output = ""
try
global output = @capture_err begin
my_makedocs()
end;
end
catch e
my_makedocs() # if it fails, re-run without capturing, so that its stderr appears in the console/logs
end
end

# errors = findall(r"Error:.*", output)
warns = findall(r"Warning:.*", output)

for w in warns
s = string("::warning title=Documenter-Warning::",output[w],"\r\n")
s = string("::warning title=Documenter-Warning::", output[w], "\r\n")
print(s)
end

Expand Down

0 comments on commit a0607e4

Please sign in to comment.