Open lionel-rowe opened 8 months ago
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/
)