You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Links to documentation of the various functions/interfaces/etc are nested under docs/~ or docs/<filename>/~, so with the default GitHub Pages setup, none of those pages can be viewed.
Workaround: Add an empty .nojekyll at the GitHub Pages root (project root or docs/) on the relevant branch; if GitHub Pages root is docs/, recreate this file every time after running deno doc --html (currently, deno doc --html deletes everything under docs/, so it has to be replaced every time).
Possible fixes:
Change ~ directory name to something else
Keep ~ as default directory name but make it configurable
Generate .nojekyll under docs/
Generate .nojekyll under project root
Generate .nojekyll in both places (!)
Don't generate .nojekyll, but automatically replace it if it already happens to exist in docs/
Add a config option for where to generate .nojekyll, if at all
Add a config option for whether to delete unrecognized dotfiles under docs/ (or even finer-grained config, e.g. a glob pattern for files to leave unchanged in docs/)
Do nothing and require userland workarounds
Other?
The text was updated successfully, but these errors were encountered:
I personally would say "do nothing". jekyll is an external tool, and we cannot start accomodating for various scenarios of different distribution systems. I wouldn't really be in favour of adding .nojekyll. The ~ divider was decided on being the only really viable character that could be used. This however is probably something we should mention in docs.deno.com
On GitHub Pages, Jekyll causes URLs containing
~
to 404. Related: The url contains '~' seems to be routed to 404Links to documentation of the various functions/interfaces/etc are nested under
docs/~
ordocs/<filename>/~
, so with the default GitHub Pages setup, none of those pages can be viewed.Workaround: Add an empty
.nojekyll
at the GitHub Pages root (project root ordocs/
) on the relevant branch; if GitHub Pages root isdocs/
, recreate this file every time after runningdeno doc --html
(currently,deno doc --html
deletes everything underdocs/
, so it has to be replaced every time).Possible fixes:
~
directory name to something else~
as default directory name but make it configurable.nojekyll
underdocs/
.nojekyll
under project root.nojekyll
in both places (!).nojekyll
, but automatically replace it if it already happens to exist indocs/
.nojekyll
, if at alldocs/
(or even finer-grained config, e.g. a glob pattern for files to leave unchanged indocs/
)The text was updated successfully, but these errors were encountered: