-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Reload pages which include a changed document #503
Comments
It could be implemented but depending on many includes you have it will negatively impact the performance. Similarly, we could also reload the page when a local resource changed (i.e., images). I'm willing to implement this feature behind a flag, so users will decide if they want to pay a small performance price for this feature. |
Some questions I have while working on an implementation:
|
@ggrossetie Any advice? |
The include directive is a preprocessor directive https://docs.asciidoctor.org/asciidoc/latest/directives/include/#include-processing.
You can use
I think you are looking for this option: https://docs.asciidoctor.org/asciidoctor/latest/api/catalog-assets/ |
I've made some progress, collecting all included paths (even the figures) is working now. I have a question about where the hashes of all the files should be stored. Currently they are stored using |
When I have a main document which includes certain subdocuments, that main document currently does net get reloaded when one if the included files get changed. Can this be implemented?
The text was updated successfully, but these errors were encountered: