-
DescriptionIs it possible to enable search in rendered documents (website, blog, book) in offline mode? The search box appears but shows no results. |
Beta Was this translation helpful? Give feedback.
Answered by
cscheid
Jan 2, 2024
Replies: 1 comment 7 replies
-
It should work. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI, A large number of modern javascript features simply don't work when you use the
file://
protocol. That's by design, because of security concerns. As a result, a number of quarto features don't work either. Search and OJS code cells are some of the examples.MkDocs and JupyterBook probably are using a different searching library that doesn't hit the javascript security limitations. I would encourage you to use the preview server (or a local server like the one that is bundled with Python, via
python -m http.server
).