From 8ea1525df40751af2702a508c3ecf2edf2d76107 Mon Sep 17 00:00:00 2001 From: Seth <37915796+iSaluki@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:45:54 +0100 Subject: [PATCH 1/5] Add SethMB Work (#203) --- content/notes/showcase.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/notes/showcase.md b/content/notes/showcase.md index a611955..837b84a 100644 --- a/content/notes/showcase.md +++ b/content/notes/showcase.md @@ -17,5 +17,6 @@ Want to see what Quartz can do? Here are some cool community gardens :) - [Data Dictionary 🧠](https://glossary.airbyte.com/) - [sspaeti.com's Second Brain](https://brain.sspaeti.com/) - [oldwinterの数字花园](https://garden.oldwinter.top/) +- [SethMB Work](https://sethmb.xyz/) If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/hugo/content/notes/showcase.md)! From 666ffebe90c04dc7fe064a98232538826af70738 Mon Sep 17 00:00:00 2001 From: Pavol Komlos <62595149+plundration@users.noreply.github.com> Date: Wed, 12 Oct 2022 17:21:28 +0200 Subject: [PATCH 2/5] Decode the heading id from split link (#214) --- assets/js/popover.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/popover.js b/assets/js/popover.js index 3d7a30c..29104b9 100644 --- a/assets/js/popover.js +++ b/assets/js/popover.js @@ -27,7 +27,7 @@ function initPopover(baseURL, useContextualBacklinks, renderLatex) { let splitLink = li.href.split("#") let cleanedContent = removeMarkdown(linkDest.content) if (splitLink.length > 1) { - let headingName = splitLink[1].replace(/\-/g, " ") + let headingName = decodeURIComponent(splitLink[1]).replace(/\-/g, " ") let headingIndex = cleanedContent.toLowerCase().indexOf("" + headingName + "") cleanedContent = cleanedContent.substring(headingIndex, cleanedContent.length) } From 3409a49f156263aa36ca866e0d2b0b16645c2162 Mon Sep 17 00:00:00 2001 From: Charles Chamberlain Date: Sun, 16 Oct 2022 12:43:43 -0400 Subject: [PATCH 3/5] fix: Apply monospace style to all meta in a popover (#216) --- assets/styles/base.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/styles/base.scss b/assets/styles/base.scss index 5eaf6c4..8bd97ef 100644 --- a/assets/styles/base.scss +++ b/assets/styles/base.scss @@ -588,7 +588,7 @@ header { margin: 0.25rem 0; } - & > .meta { + & .meta { margin-top: 0.25rem; opacity: 0.5; font-family: var(--font-mono); From 72571a75884a10cd78205d79a5e475e17a4d9451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Zaleta=20Mart=C3=ADnez?= <94091554+javierzaleta@users.noreply.github.com> Date: Tue, 18 Oct 2022 19:25:55 -0500 Subject: [PATCH 4/5] feat: Add Spanish translation (#217) --- i18n/es.toml | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 i18n/es.toml diff --git a/i18n/es.toml b/i18n/es.toml new file mode 100644 index 0000000..2effa23 --- /dev/null +++ b/i18n/es.toml @@ -0,0 +1,65 @@ +[404_message] +other = "Hey! Te ves un poco perdido. Esta página no existe (o puede que sea privada)." + +[404_back] +other = "↳ Vamos a llevarte de regreso a casa." + +[all_posts] +other = "Todos {{.Title}}" + +[last_updated] +other = "Actualizado por última vez" + +[notes_count] +other = "notas con esta etiqueta" + +[first_10] +other = "mostrando los primeros 10 resultados" + +[tag] +other = "Etiqueta" + +[backlinks] +other = "Backlinks" + +[no_backlinks] +other = "No se encontraron backlinks" + +[home] +other = "Casa" + +[light_mode] +other = "Modo Claro" + +[dark_mode] +other = "Modo Oscuro" + +[edit_source] +other = "Editar Fuente" + +[interactive_graph] +other = "Gráfico Interactivo" + +[search] +other = "Búsqueda" + +[search_icon] +other = "Ícono de Búsqueda" + +[icon_search] +other = "Ícono para abrir la búsqueda" + +[recent_notes] +other = "Notas Recientes" + +[first_3_notes] +other = "primeras 3 {{ .notes }}" + +[search_for_something] +other = "Buscar algo..." + +[toc] +other = "Tabla de Contenido" + +[copyright] +other = "Hecho por {{ .name }} usando Quartz, © {{ .year }}" From 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b Mon Sep 17 00:00:00 2001 From: Evan Cater Date: Mon, 24 Oct 2022 12:13:35 -0400 Subject: [PATCH 5/5] fix euler's identity (#220) --- content/notes/CJK + Latex Support (测试).md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/notes/CJK + Latex Support (测试).md b/content/notes/CJK + Latex Support (测试).md index c2d6f84..0f9afc2 100644 --- a/content/notes/CJK + Latex Support (测试).md +++ b/content/notes/CJK + Latex Support (测试).md @@ -17,7 +17,7 @@ $$f(x) = \int_{-\infty}^\infty f\hat(\xi),e^{2 \pi i \xi x} \,d\xi$$ -Inline math also works with single dollar signs `$...$`. For example, Euler's identity but inline: $e^{i\pi} = 0$ +Inline math also works with single dollar signs `$...$`. For example, Euler's identity but inline: $e^{i\pi} = -1$ Aligned equations work quite well: @@ -37,4 +37,4 @@ a & b & c $$ ## RTL -More information on configuring RTL languages like Arabic in the [config](notes/config.md) page. \ No newline at end of file +More information on configuring RTL languages like Arabic in the [config](notes/config.md) page.