You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tallamjr
changed the title
.to_html() method produces incorrectly formatted <div> element string for full_htmlk=False option.to_html() method produces incorrectly formatted <div> element string for full_html=False option
May 14, 2020
When one invokes
plotly.io.to_html(fig, include_plotlyjs=False, full_html=False)
the followingexample output is produced:
Note the
\n
characters as well as a single quotedid
.The resulting

<div>
element appears like this when placed in a markdown document, i.e no plotshowing up:
Note I have ensured to include:
above the
<div>
element.Removing the
\n
characters and replacing the single quotedid
with double quotes seems toresolve this issue.
See PR #2469
The text was updated successfully, but these errors were encountered: