Commit Graph

51 Commits

Author SHA1 Message Date
5a784fc8f4 fix: remove console log (#159) 2022-07-13 15:02:11 -07:00
9cb48adf29 feat: use floating-ui for better popover positioning 2022-07-13 15:01:50 -07:00
a47218d28c Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
2022-07-03 11:42:35 -07:00
4f088e1312 Fix width: auto for SPA routing (#156) 2022-07-02 19:40:18 -07:00
c67ffb76ef Added optional rendering of code block titles (#148) 2022-07-01 11:03:52 -07:00
f3ddbe8860 Bump million to 1.11.3 2022-06-28 21:43:28 -07:00
32354d4d9d minor adjustment 2022-06-06 16:48:16 +01:00
ca6a6f67fa Merge branch 'hugo' into hugo 2022-06-06 12:56:47 +01:00
4bdfbcfbfb better font behaviour 2022-06-02 08:35:28 +01:00
e9d9a6cfb9 change to object destructuring for drawGraph() arguments 2022-06-02 08:16:02 +01:00
a61b57f827 uncomment window.Million 2022-06-01 21:30:40 +01:00
47dae8a6d4 Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage. 2022-06-01 13:49:27 +01:00
4c291a7d87 Prerender latex 2022-05-29 20:40:44 -07:00
9c459c0aeb Bump to 1.9.6 2022-05-27 16:14:17 -07:00
f4fb941de7 Bump million to 1.9.5 2022-05-27 13:19:19 -07:00
c5247d4df8 Bump million to 1.9.4 2022-05-27 09:49:28 -07:00
aff7855269 Bump milliomn to 1.9.3 2022-05-27 09:02:01 -07:00
c1b8d1965b Add prefetch to graph 2022-05-27 08:40:00 -07:00
0978df58f7 Bump million to 1.9.2 2022-05-27 08:39:44 -07:00
13cc826cf3 fix inline link highlighting, safer latex render 2022-05-05 21:11:23 -04:00
dd6440e153 fix: clean wikilinks and render latex in popover 2022-05-05 20:30:55 -04:00
b61392bea6 fix: merge conf 2022-05-05 01:03:09 -04:00
81f30fea4e feat: contextual backlinks (closes #106) 2022-05-05 00:58:50 -04:00
5c7d7eb5f8 Remove redundant URL construction 2022-05-03 10:55:45 -07:00
b146d410d9 Support /path root sites 2022-05-03 10:54:39 -07:00
b5bf2152ac Support active node with other data at end of url 2022-05-03 10:38:41 -07:00
b218ce4c56 Rename API and generalize router API 2022-05-03 10:16:09 -07:00
8bfd982d4c Merge 2022-05-03 10:07:38 -07:00
055422cc17 Use explicit regex for trailing slash trim 2022-05-03 09:27:25 -07:00
8d105ce68f Remove unnecessary 'url' param in drawGraph 2022-05-03 09:20:01 -07:00
c3d49818bc Peg router version 2022-05-03 09:04:15 -07:00
7a80cc0510 Fix active node on graph 2022-05-03 08:53:18 -07:00
4525576341 Fix popover 2022-05-03 08:47:42 -07:00
a1d03a044e fix: trim trailing slash when calculating popover 2022-05-03 10:57:20 -04:00
516eeca853 cfg: make SPA optional 2022-05-03 10:43:22 -04:00
7653fc0eac fix: broken semi and graph min-height 2022-05-02 13:00:41 -04:00
c3eaa9ea86 fmt: remove semis for good 2022-05-02 12:56:44 -04:00
24f70ec244 fmt: remove semis :) 2022-05-02 12:14:51 -04:00
3f60ab4bbf Add clarification comments 2022-05-02 09:04:36 -07:00
b4675a9282 Add router 2022-05-01 22:06:33 -07:00
92d5e5bd3b feat: show graph titles on zoom (fixes #92) 2022-04-28 15:49:16 -07:00
5451e16dd8 fix: append trailing slash, fixes #111 2022-04-28 10:48:31 -07:00
c92332681a fix: check for src before attempting to add popover 2022-04-05 20:44:39 -07:00
2dd7171d0e fix latex misrendering 2022-04-02 20:34:55 -07:00
e247835d15 feat: wikilinks implementation 2022-04-02 20:06:31 -07:00
0f98d65f4c fix: cjk support + demo page 2022-04-02 17:38:39 -07:00
39794d4d69 fix: non-unicode character in popover and search #67, #68 2022-04-02 12:59:38 -07:00
4592bde30d feat: better titles for empty pages #61 2022-03-15 00:37:56 -07:00
29e2934dc2 Format JS 2022-03-07 18:25:02 +00:00
a1c6b89740 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