-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Description
Stumbled upon a bug when trying to improve build time for live reloading.
BUG: Anything nested in two levels of dynamic include do not get updated.
Set up
site.json
{
"baseUrl": "",
"pages": [
{
"src": "index.md",
"title": "Hello World"
}
],
"ignore": [
"_site/*",
"site.json"
],
"deploy": {
"message": "Site Update."
}
}
index.md
<include src="include1.md" dynamic />include1.md
<include src="include2.md" dynamic />
Any changes here will be reloaded correctlyinclude2.md
Any changes here will NOT be reloaded correctlySteps
- run
$ markbind serve - make a change to text in
include2.mdand save - site reloads but content in the nested dynamic panel is unchanged
Additional Notes
- after applying steps 1 - 3, a change to
include1.mdwill update the include1's content correctly but the include2 content is still unchanged