Skip to content

Commit

Permalink
Fix floating "disable_ui" text
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp authored Apr 22, 2024
1 parent ec7a082 commit 0890803
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/notebook.jl
Original file line number Diff line number Diff line change
Expand Up @@ -697,13 +697,13 @@ function template_handler(

# TODO these relative paths can't be right...
h = @htl """
<pluto-editor
statefile=$(reg_s.url)
notebookfile=$(reg_n.url)
slider_server_url=$(pluto_deploy_settings.Export.slider_server_url)
binder_url=$(pluto_deploy_settings.Export.binder_url)
disable_ui
>
<pluto-editor $((
statefile=reg_s.url,
notebookfile=reg_n.url,
slider_server_url=pluto_deploy_settings.Export.slider_server_url,
binder_url=pluto_deploy_settings.Export.binder_url,
disable_ui=true,
))></pluto-editor>
"""

frontmatter = Pluto.frontmatter(input.absolute_path)
Expand Down

0 comments on commit 0890803

Please sign in to comment.