Skip to content

Commit

Permalink
PR to test formatting action
Browse files Browse the repository at this point in the history
  • Loading branch information
greimel authored Sep 18, 2024
1 parent 0d18e3d commit f7df3ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/present.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Base.show(io, mime::MIME"text/html", fld::Foldable)
write(io, "<details><summary>$(fld.title)</summary><p>")
show(io, mime, fld.content)
write(io, "</p></details>")
return nothing
nothing
end

struct TwoColumn{L,R}
Expand Down Expand Up @@ -86,7 +86,7 @@ end
function ChooseDisplayMode(;
wide::Bool=false, present::Bool=false, lang::AbstractLanguage=default_language[]
) # Adapted from PlutoThemes.jl
checked = wide ? "checked" : ""
checked = wide ? "checked" : ""
checked_present_mode = present ? "checked" : ""
init = wide ? "toggle_width(document.getElementById('width-over-livedocs'))" : ""
return HTML("""
Expand Down

0 comments on commit f7df3ab

Please sign in to comment.