Commit Graph

789 Commits

Author SHA1 Message Date
Miguel Pimentel
1772ea148a
Pull-Request [ariasae-10-2-2023] from Obsidian (#19)
* PUSH NOTE : Tools.md

* PUSH NOTE : Unlock Firefox Sidebar.md

* PUSH NOTE : Chuckwalla.md

* PUSH NOTE : Arpeggio.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Digital Garden.md

* PUSH NOTE : Callouts.md

* DELETE FILE : content/Arpeggio.md

* DELETE FILE : content/Tools.md

* DELETE FILE : content/Unlock Firefox Sidebar.md
2023-10-02 13:29:30 -05:00
semanticdata
d7de17999e Quartz sync: Oct 2, 2023, 11:51 AM 2023-10-02 11:51:26 -05:00
Miguel Pimentel
c6c381e39c
Pull-Request [ariasae-10-2-2023] from Obsidian (#18)
* PUSH NOTE : Chuckwalla.md

* PUSH NOTE : Grammar.md

* PUSH NOTE : Callouts.md

* DELETE FILE : content/Bookmarklets.md

* DELETE FILE : content/Chuckwalla.md

* DELETE FILE : content/Explore the Garden.md

* DELETE FILE : content/Guide.md

* DELETE FILE : docs/authoring content.md

* DELETE FILE : docs/features/table of contents.md
2023-10-02 11:48:23 -05:00
Miguel Pimentel
21c31da8c8
Pull-Request [ariasae-10-2-2023] from Obsidian (#17)
* PUSH NOTE : Grammar.md

* PUSH NOTE : Chuckwalla.md

* PUSH NOTE : Callouts.md

* PUSH NOTE : index.md
2023-10-02 11:44:10 -05:00
semanticdata
bfc5ddfff2 Merge branch 'main' of https://github.com/semanticdata/forgetful-notes 2023-10-02 11:41:43 -05:00
semanticdata
d0ce9b8f36 remove/hide page title in Homepage 2023-10-02 11:11:19 -05:00
Miguel Pimentel
bc2db77c66
PUSH NOTE : Public Journal.md (#16) 2023-10-02 10:52:18 -05:00
Miguel Pimentel
69b7db5fb2
Merge branch 'jackyzha0:v4' into main 2023-10-02 08:06:58 -05:00
Luca Salvarani
c8f5dbbad3
fix: Fix Backlinks not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class

Fix #518

* fix: Apply `displayClass` to all layout components

* refactor: Use same style

* fix: Remove `undefined` class using coalescing operator
2023-10-01 17:20:55 -07:00
bfahrenfort
ab5efac75f
Fix: RSS title escaping (#521)
* Fix title escaping

* npm run format
2023-10-01 09:47:22 -07:00
semanticdata
f9953c3c23 bump node 20.7.2 to 20.8.0 2023-09-30 08:28:12 -05:00
semanticdata
aa71c68689 update README 2023-09-30 08:24:29 -05:00
semanticdata
581646883d rem recent notes section, impacted style 2023-09-30 08:18:24 -05:00
semanticdata
1d6e011738 trying new theme from Discord server 2023-09-29 21:11:22 -05:00
semanticdata
66cfcc7923 fix darkmode toggle, search positions 2023-09-29 19:05:25 -05:00
semanticdata
c7019c537a rearranged left sidebar, mini search icon 2023-09-29 15:26:39 -05:00
semanticdata
7e8a5851f8 remove link to Tags 2023-09-29 14:52:31 -05:00
semanticdata
c7d479ea40 simplify search field, no words, only icon 2023-09-29 14:49:56 -05:00
Miguel Pimentel
e388b3c0f1
Pull-Request [ariasae-9-29-2023] from Obsidian (#15)
* PUSH NOTE : Explore the Garden.md

* PUSH NOTE : Projects Overview.md

* PUSH NOTE : Static Site Generators.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Tools.md

* PUSH NOTE : index.md

* PUSH NOTE : Unlock Firefox Sidebar.md
2023-09-29 14:43:32 -05:00
semanticdata
7c0cf99cf4 add breadcrumbs, clean up 2023-09-29 14:34:30 -05:00
semanticdata
8802f64e91 Quartz sync: Sep 29, 2023, 2:23 PM 2023-09-29 14:23:05 -05:00
semanticdata
edefffa137 Merge branch 'v4' of https://github.com/jackyzha0/quartz 2023-09-29 14:22:54 -05:00
Miguel Pimentel
a6664cef2f
PUSH NOTE : Public Journal.md (#14) 2023-09-29 14:04:07 -05:00
Hrishikesh Barman
2f99339dcf
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations

This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.

But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39

This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.

With these changes, the generated files show latex formatting with
default quartz configuration.

Sidenote on `\_` escape by ox-hugo:

ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).

This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````

But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
2023-09-29 11:35:26 -07:00
ArtfulAzeria
5232d09af5
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)

* fix: use `numeric` + `base` for localeCompare

* docs(explorer): update default sortFn

* fix: better and more responsive tag behavior

* tags css moved to TagList.tsx

* used npm run format

* merged tag declarations

---------

Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
2023-09-29 11:17:48 -07:00
Catchears
0138085c16
docs: fix typo in breadcrumbs documentation (#513) 2023-09-29 08:19:10 -07:00
Ben Schlegel
0b61f6fbfd
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs

* style: fix styling, move breadcrumbs to top

* refactor: move `capitalize to `lang.ts``

* refactor: clean breadcrumb generation

* feat: add options to breadcrumbs

* feat: implement `resolveFrontmatterTitle`

* feat: add `hideOnRoot` option

* feat(consistency): capitalize every crumb

* style: add `flex-wrap` to parent container

* refactor: clean `Breadcrumbs.tsx`

* feat(accessibility): use `nav`, add aria label

* style: improve look in popovers by adding margin

* docs: write docs for breadcrumb component

* refactor: collapse `if` condition for hideOnRoot

* chore: add todo for perf optimization

* docs: update introduction
2023-09-29 10:26:15 +02:00
Miguel Pimentel
2daabe2fa1
Pull-Request [ariasae-9-28-2023] from Obsidian (#13)
* PUSH NOTE : Meditation.md

* PUSH NOTE : Public Journal.md
2023-09-28 12:56:59 -05:00
semanticdata
2ed94c6dea remove old notes 2023-09-28 10:46:38 -05:00
Miguel Pimentel
70f961ce5f
Pull-Request [ariasae-9-28-2023] from Obsidian (#12)
* PUSH NOTE : Projects Overview.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Upcoming Concerts.md

* PUSH NOTE : Guide.md

* PUSH NOTE : Free Facts.md

* PUSH NOTE : About.md
2023-09-28 10:43:23 -05:00
Miguel Pimentel
e823b28e26
Merge branch 'jackyzha0:v4' into main 2023-09-28 10:42:49 -05:00
Ben Schlegel
d4c122646c
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare

* docs(explorer): update default sortFn
2023-09-28 08:39:44 -07:00
Miguel Pimentel
ae8c2813b1
Pull-Request [ariasae-9-27-2023] from Obsidian (#11)
* PUSH NOTE : The Moon (Earth).md

* PUSH NOTE : Mermaid JS Graphs.md

* PUSH NOTE : Static Site Generators.md

* PUSH NOTE : Projects Overview.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Markdown Demo.md

* PUSH NOTE : index.md

* PUSH NOTE : Guide.md
2023-09-27 15:36:12 -05:00
semanticdata
adb33ee835 small changes
condensed license, update package-lock, add section to readme
2023-09-27 13:23:30 -05:00
semanticdata
41a6f00514 update package-lock 2023-09-26 22:07:52 -05:00
Miguel Pimentel
f471b18e3a
Merge branch 'jackyzha0:v4' into main 2023-09-26 08:42:57 -05:00
Jacky Zhao
d22c3c107a fix: coerce title to string 2023-09-25 18:15:55 -07:00
semanticdata
4c469c7002 remove blog posts 2023-09-25 15:21:58 -05:00
Miguel Pimentel
d1a74c374e
PUSH NOTE : index.md (#10) 2023-09-25 15:20:09 -05:00
Miguel Pimentel
16fcd7dd31
Pull-Request [ariasae-9-25-2023] from Obsidian (#9)
* PUSH NOTE : Projects Overview.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Meta.md

* PUSH NOTE : Tools.md

* PUSH NOTE : index.md

* PUSH NOTE : Quotes Collection.md
2023-09-25 15:02:26 -05:00
Miguel Pimentel
e1e92b0247
Merge branch 'jackyzha0:v4' into main 2023-09-25 14:59:12 -05:00
Jacky Zhao
697bffdb8b fix: treat the 0 time as invalid too 2023-09-24 14:47:30 -07:00
Jacky Zhao
ea5742c328 fix: mermaid copy source position 2023-09-24 10:31:54 -07:00
Chad Lee
95eec5b49d
add site to showcase (#504) 2023-09-24 10:27:42 -07:00
Vince Imbat
c5b9137f12
docs: Adds Vince Imbat to showcase (#501) 2023-09-22 19:39:02 -07:00
Miguel Pimentel
dae33e481f
Merge branch 'jackyzha0:v4' into main 2023-09-22 21:34:21 -05:00
Miguel Pimentel
2569875624
Update quartz.config.ts 2023-09-22 21:33:38 -05:00
Jacky Zhao
13c8673226 feat: add warning for invalid date format 2023-09-22 10:04:50 -07:00
Jacky Zhao
a897cc1f53 feat: add warning for missing home page 2023-09-22 10:04:50 -07:00
Miguel Pimentel
6e050b4a8e
Update deploy.yml 2023-09-22 11:43:30 -05:00