Commit Graph

65 Commits

Author SHA1 Message Date
Aiden Bai 3c660dd9b5
Remove unnecessary 'url' param in drawGraph 2022-05-03 09:20:01 -07:00
Aiden Bai 9d3bbd6076
Fix active node on graph 2022-05-03 08:53:18 -07:00
Jacky Zhao 6e6dd4cb0b fix: trim trailing slash when calculating popover 2022-05-03 10:57:20 -04:00
Jacky Zhao 24d08d580d cfg: make SPA optional 2022-05-03 10:43:22 -04:00
Jacky Zhao fc89ff2680 fix: broken semi and graph min-height 2022-05-02 13:00:41 -04:00
Jacky Zhao e9a33c04b5 fmt: remove semis for good 2022-05-02 12:56:44 -04:00
Jacky Zhao 9ba0a4b34f fmt: remove semis :) 2022-05-02 12:14:51 -04:00
Aiden Bai 5c602ab16f
Add clarification comments 2022-05-02 09:04:36 -07:00
Aiden Bai bcb166c21c
Add router 2022-05-01 22:06:33 -07:00
Jacky Zhao b8a660e208 feat: copyable header anchors (fixes #86) 2022-04-30 13:10:12 -07:00
Jacky Zhao 87b5a7a251 feat: show graph titles on zoom (fixes #92) 2022-04-28 15:49:16 -07:00
Jacky Zhao c8d390dbc5 fix: always hide popover on mobile (fixes #104) 2022-04-28 13:45:29 -07:00
Jacky Zhao 3c7ece5405 fix: append trailing slash, fixes #111 2022-04-28 10:48:31 -07:00
Jacky Zhao f05ff5e62d fix: add dropshadow to popover, cleanup animation 2022-04-05 23:19:33 -07:00
Jacky Zhao 12ed9722d8 fix: popover selection wrongly including line breaks 2022-04-05 22:43:11 -07:00
Jacky Zhao f9c7cdf928 fix: check for src before attempting to add popover 2022-04-05 20:44:39 -07:00
Jacky Zhao 7808c66c4d fix: align footer links 2022-04-05 09:41:13 -07:00
meleu 671fe05312
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
2022-04-04 17:07:43 -03:00
meleu a287d11246 add a collapsible ToC 2022-04-03 22:12:55 -03:00
Jacky Zhao e6e04c03c4 fix latex misrendering 2022-04-02 20:34:55 -07:00
Jacky Zhao c117e38899 feat: wikilinks implementation 2022-04-02 20:06:31 -07:00
Jacky Zhao 4fd983277e fix: cjk support + demo page 2022-04-02 17:38:39 -07:00
Jacky Zhao cc86136bcb feat: basic latex support 2022-04-02 17:00:14 -07:00
Jacky Zhao 8e083d4a93
Merge pull request #83 from meleu/patch-2 2022-04-02 14:53:05 -07:00
meleu a469653f75 separate contact links semantically 2022-04-02 18:50:58 -03:00
Jacky Zhao c51573efa9 feat: grey out broken links 2022-04-02 13:34:26 -07:00
Jacky Zhao 1ddd15afc6 fix: non-unicode character in popover and search #67, #68 2022-04-02 12:59:38 -07:00
Jacky Zhao 3674df48b8 fix pagination styling 2022-04-01 10:13:01 -07:00
Jacky Zhao 94e987dab5 feat: better titles for empty pages #61 2022-03-15 00:37:56 -07:00
Claudio Yanes f70128a3de
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue)  is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
2022-03-09 17:58:01 +00:00
Claudio Yanes b96c60edfc Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo 2022-03-07 18:27:45 +00:00
Claudio Yanes 978d5ca1ae Format JS 2022-03-07 18:25:02 +00:00
Jacky Zhao 907270992d fix: hide popover on mobile to prevent overflow 2022-03-04 23:55:07 -08:00
Claudio Yanes 0fad5570d3 Add .gitkeep to assets/indices 2022-03-04 04:14:42 +00:00
Claudio Yanes dc9b421e21 Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).

Using paddings prevents this “extra space” from scraping and displacing
the body.

Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
2022-03-04 04:12:43 +00:00
Claudio Yanes 7e0f2e4449 Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.

Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
2022-03-04 02:25:30 +00:00
Claudio Yanes 1313bd9779 Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
2022-03-04 02:07:51 +00:00
Jacky Zhao 3b3e6ec3b2 fix relative pathing for dynamic fetch 2022-02-15 22:54:20 -05:00
Jacky Zhao 4587b13360 feat: add rtl support as part of #47 2022-02-15 17:12:08 -05:00
Jacky Zhao c35086c510 visibility fix 2022-02-15 14:50:25 -05:00
Jacky Zhao 4e639979f8 fix copy selection 2022-01-03 15:36:58 -05:00
Jacky Zhao 4a3c4fdef5 popover implementation 2022-01-03 13:18:31 -05:00
Jacky Zhao 2b432d7f0b fix flex gap 2022-01-02 20:02:47 -05:00
Jacky Zhao e4caa0d1d7 add taxonomy and term lists 2021-12-27 19:35:42 -05:00
Jacky Zhao e1911a58ff enable last modified info 2021-12-27 17:28:53 -05:00
Jacky Zhao b4e2697116 content section 2021-12-27 15:59:19 -05:00
Jacky Zhao 6fbfa7170b various font and colour fixes 2021-12-26 00:09:15 -05:00
Jacky Zhao 43837f9e2e add makefile, fix link padding, test capitalization 2021-12-25 23:45:30 -05:00
Jacky Zhao 114b7ca913 Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo 2021-12-24 09:48:41 -05:00
Jacky Zhao 48d01810c4 fix config setting, fix font size for h1 in article 2021-12-23 14:40:59 -08:00