We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python 3.8.7 panel 0.10.3 bokeh 2.2.3
Saved HTML files do not get CSS resources inlined.
<link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/alerts.css" type="text/css" /> <link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/card.css" type="text/css" /> <link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/dataframe.css" type="text/css" /> <link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/json.css" type="text/css" /> <link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/markdown.css" type="text/css" /> <link rel="stylesheet" href="http://localhost:5006/static/extensions/panel/css/widgets.css" type="text/css" />
Since there is no server running, the page loads without styles and with additional delay.
import panel as pn from bokeh.resources import INLINE pn.panel('# Test').save("test.html", resources=INLINE)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
ALL software version info
python 3.8.7
panel 0.10.3
bokeh 2.2.3
Description of expected behavior and the observed behavior
Saved HTML files do not get CSS resources inlined.
Since there is no server running, the page loads without styles and with additional delay.
Complete, minimal, self-contained example code that reproduces the issue
The text was updated successfully, but these errors were encountered: