With the latest submodule, the right-hand TOC appears in the wrong place:

With an earlier version of the Docsy submodule, it all "works fine"

The difference:
The relevant PR is #554
Unknown. When I run git submodule update -f --init, it checks a later (but not the latest) commit,
43a70b21d
Workaround
Include a git checkout f82dd5e in the netlify.toml file:
[build]
publish = "public"
command = "cd themes/docsy && git submodule update -f --init && git checkout f82dd5e && cd ../.. && hugo"
With the latest submodule, the right-hand TOC appears in the wrong place:
With an earlier version of the Docsy submodule, it all "works fine"
The difference:
The relevant PR is #554
Unknown. When I run
git submodule update -f --init, it checks a later (but not the latest) commit,43a70b21dWorkaround
Include a
git checkout f82dd5ein the netlify.toml file: