aboutsummaryrefslogtreecommitdiff
path: root/lib/docs/index.html
AgeCommit message (Collapse)Author
2022-09-05autodoc: improve rendering of long fn signaturesLoris Cro
2022-09-04autodoc: add support for doc testsLoris Cro
2022-08-23Merge pull request #12481 from alichraghi/patch-1Loris Cro
docs: add padding between functions list
2022-08-19autodoc: Fix border color around field docs in light modeRyan Liptak
Follow up to https://github.com/ziglang/zig/pull/12305
2022-08-18docs: add padding between functions listAli Chraghi
2022-08-14fix: scroll page to very top when S is pressedr00ster91
Credits go to @rudedogg
2022-08-14feat: indent keyboard shortcutsr00ster91
This indents the keyboard shortcuts related to the S key because you can only use these keyboard shortcuts after you pressed S (when the search field is focused). This is a visual hint.
2022-08-14fix: var(--mono) used for font-sizer00ster91
2022-08-14feat: better No Results Found pager00ster91
This adds some helpful links to the page and makes it look nicer by using <kbd> etc.
2022-08-06Merge branch 'master' into nicedocszooster
2022-08-06autodoc: re-introduce search result limitsLoris Cro
2022-08-06fix: use brighter bg color for help modal in light moder00ster91
You can see this issue in the video.
2022-08-06style: some more formattingr00ster91
2022-08-06feat: make shadow of `<kbd>`s look nicerr00ster91
2022-08-06style: formatr00ster91
This is mostly manually formatted. I couldn't find a good HTML formatter for this file. It also converts a bunch of tabs to spaces.
2022-08-06fix: disable search bar before loadingr00ster91
This fixes the new search placeholder not disappearing if you type before it finished loading, and maybe some other things.
2022-08-06feat: new search placeholderr00ster91
This new search placeholder looks much nicer because it allows HTML inside it which the `placeholder` attribute on `<input>`s doesn't allow. I tested it for all kinds of cases and it seems to work pretty well.
2022-08-06fix: "dialog" -> "modal"r00ster91
"Dialog" is the incorrect term here because a dialog is a separate window that still lets you use the app but a modal is a window where you can't continue using the app until you close it.
2022-07-30autodoc: Add borders to field docs to make it clear which field they are ↵Ryan Liptak
associated with
2022-07-19Autodoc: small polish on the htmlAndrew Kelley
2022-07-19Autodoc: add warning banner to htmlLoris Cro
2022-07-19autodoc: restore support for zig version + cleanup & init work to fix packagesLoris Cro
2022-07-19autodoc: new design for function listLoris Cro
2022-07-19autodoc: make links respect internal docs modeLoris Cro
2022-07-19autodoc: improved frontend renderingLoris Cro
2022-07-19autodoc: improve rendering and add "show priv decls" checkboxLoris Cro
2022-07-19autodoc: add declval support to docs jsLoris Cro
2022-05-06flatten lib/std/special and improve "pkg inside another" logicAndrew Kelley
stage2: change logic for detecting whether the main package is inside the std package. Previously it relied on realpath() which is not portable. This uses resolve() which is how imports already work. * stage2: fix cleanup bug when creating Module * flatten lib/std/special/* to lib/* - this was motivated by making main_pkg_is_inside_std false for compiler_rt & friends. * rename "mini libc" to "universal libc"